|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
| 2 | + <PropertyGroup> |
| 3 | + <TargetFrameworks>netstandard2.0</TargetFrameworks> |
| 4 | + <LangVersion>7.3</LangVersion> |
| 5 | + <GeneratePackageOnBuild>True</GeneratePackageOnBuild> |
| 6 | + <Company>Codecutout</Company> |
| 7 | + <Authors>Alex Davies</Authors> |
| 8 | + <Description>StringToExpression supports the compiling a domain specific string into a .NET expression. |
2 | 9 |
|
3 | | - <PropertyGroup> |
4 | | - <TargetFrameworks>netstandard2.0</TargetFrameworks> |
5 | | - <Company>Codecutout</Company> |
6 | | - <Authors>Alex Davies</Authors> |
7 | | - <Description>StringToExpression supports the compiling a domain specific string into a .NET expression. |
8 | | - |
9 | | -Out of the box configuration is provided for parsing arithmetic expressions and for parsing OData filter strings. Although can be configured to parse string of any format</Description> |
10 | | - <Copyright>Copyright © 2017</Copyright> |
11 | | - <PackageLicenseUrl>https://github.com/codecutout/StringToExpression/blob/master/LICENSE</PackageLicenseUrl> |
12 | | - <PackageProjectUrl>https://github.com/codecutout/StringToExpression</PackageProjectUrl> |
13 | | - <PackageTags>Expression Filter OData Arithmetic DSL</PackageTags> |
14 | | - <GeneratePackageOnBuild>True</GeneratePackageOnBuild> |
15 | | - <Version>2.1.1</Version> |
16 | | - <PackageReleaseNotes>Add checks to prevent keywords from being identified within property names.</PackageReleaseNotes> |
17 | | - </PropertyGroup> |
18 | | - |
| 10 | + Out of the box configuration is provided for parsing arithmetic expressions and for parsing OData filter strings. Although can be configured to parse string of any format</Description> |
| 11 | + <PackageLicenseExpression>MIT</PackageLicenseExpression> |
| 12 | + <PackageProjectUrl>https://github.com/codecutout/StringToExpression</PackageProjectUrl> |
| 13 | + <PackageTags>Expression Filter OData Arithmetic DSL</PackageTags> |
| 14 | + <PublishRepositoryUrl>true</PublishRepositoryUrl> |
| 15 | + <IncludeSymbols>true</IncludeSymbols> |
| 16 | + <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
| 17 | + </PropertyGroup> |
| 18 | + <ItemGroup> |
| 19 | + <None Include="..\..\README.md" Pack="true" PackagePath="\"/> |
| 20 | + </ItemGroup> |
19 | 21 | </Project> |
0 commit comments