Skip to content

Commit da96d9f

Browse files
bookwood1977Mathias Buchholz
and
Mathias Buchholz
authored
target framework 'netstandard2.0', additional Upgrade (#22)
* target framework 'netstandard2.0', additional Upgrade --------- Co-authored-by: Mathias Buchholz <[email protected]>
1 parent 09f638a commit da96d9f

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netstandard1.0;net45</TargetFrameworks>
4+
<TargetFrameworks>netstandard2.0</TargetFrameworks>
55
<Company>Codecutout</Company>
66
<Authors>Alex Davies</Authors>
77
<Description>StringToExpression supports the compiling a domain specific string into a .NET expression.
@@ -12,8 +12,8 @@ Out of the box configuration is provided for parsing arithmetic expressions and
1212
<PackageProjectUrl>https://github.com/codecutout/StringToExpression</PackageProjectUrl>
1313
<PackageTags>Expression Filter OData Arithmetic DSL</PackageTags>
1414
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
15-
<Version>1.1.1</Version>
15+
<Version>2.1.1</Version>
1616
<PackageReleaseNotes>Add checks to prevent keywords from being identified within property names.</PackageReleaseNotes>
1717
</PropertyGroup>
1818

19-
</Project>
19+
</Project>

tests/StringToExpression.Test/StringToExpression.Test.csproj

+7-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net46</TargetFramework>
4+
<TargetFramework>net481</TargetFramework>
55
</PropertyGroup>
66

77
<ItemGroup>
88
<PackageReference Include="LinqToQuerystring" Version="0.7.0.8" />
9-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.0.0" />
10-
<PackageReference Include="xunit" Version="2.3.1" />
11-
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" />
9+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
10+
<PackageReference Include="xunit" Version="2.7.0" />
11+
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.7">
12+
<PrivateAssets>all</PrivateAssets>
13+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
14+
</PackageReference>
1215
</ItemGroup>
1316

1417
<ItemGroup>

0 commit comments

Comments
 (0)