-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathStringMath.csproj
More file actions
42 lines (37 loc) · 1.75 KB
/
StringMath.csproj
File metadata and controls
42 lines (37 loc) · 1.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8;net6;net5;netstandard2.1;netcoreapp3.1;net48;net472;net461</TargetFrameworks>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>miroiu</Authors>
<Company />
<Description>Calculates the value of a math expression from a string returning a double.
Supports variables and user defined operators.</Description>
<Copyright>Miroiu Emanuel</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/miroiu/string-math</PackageProjectUrl>
<RepositoryUrl>https://github.com/miroiu/string-math</RepositoryUrl>
<PackageTags>expression-evaluator calculator string-math math string-calculator user-defined-operators operators custom-operators</PackageTags>
<Version>5.0.0</Version>
<PackageReleaseNotes>Added user defined functions</PackageReleaseNotes>
<PackageLicenseFile></PackageLicenseFile>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<Nullable>enable</Nullable>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>../build/string-math.snk</AssemblyOriginatorKeyFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)'=='net472' OR '$(TargetFramework)'=='net48'">
<LangVersion>8.0</LangVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)'=='net461'">
<LangVersion>preview</LangVersion>
</PropertyGroup>
<ItemGroup>
<None Include="..\.editorconfig" Link=".editorconfig" />
<None Include="..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>