Skip to content

Commit 3fd3715

Browse files
authored
Cleanup csproj after removing support for .NET Framework (#230)
Cleanup csproj after removing NET Framework support. #224
1 parent 5b185e9 commit 3fd3715

File tree

2 files changed

+1
-10
lines changed

2 files changed

+1
-10
lines changed

src/DynamicExpresso.Core/DynamicExpresso.Core.csproj

-5
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,6 @@
2020
<VersionSuffix></VersionSuffix>
2121
</PropertyGroup>
2222

23-
24-
<ItemGroup Condition=" $(TargetFramework.StartsWith('net4')) ">
25-
<Reference Include="Microsoft.CSharp" />
26-
</ItemGroup>
27-
2823
<ItemGroup Condition=" $(TargetFramework.StartsWith('netstandard2')) ">
2924
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
3025
</ItemGroup>

test/DynamicExpresso.UnitTest/DynamicExpresso.UnitTest.csproj

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

33
<PropertyGroup>
4-
<TargetFrameworks>netcoreapp5.0;netcoreapp3.1;net462</TargetFrameworks>
4+
<TargetFrameworks>net5.0;netcoreapp3.1;net462</TargetFrameworks>
55

66
<IsPackable>false</IsPackable>
77
</PropertyGroup>
@@ -12,10 +12,6 @@
1212
<PackageReference Include="NUnit3TestAdapter" Version="3.9.0" />
1313
</ItemGroup>
1414

15-
<ItemGroup Condition=" $(TargetFramework.StartsWith('net4')) ">
16-
<Reference Include="Microsoft.CSharp" />
17-
</ItemGroup>
18-
1915
<ItemGroup>
2016
<ProjectReference Include="..\..\src\DynamicExpresso.Core\DynamicExpresso.Core.csproj" />
2117
</ItemGroup>

0 commit comments

Comments
 (0)