Skip to content

Commit

Permalink
Bump target frameworks used in unit tests
Browse files Browse the repository at this point in the history
`netcoreapp3.1` is no longer supported or receiving security updates, so has been removed.
  • Loading branch information
drewnoakes committed Sep 6, 2023
1 parent b782d03 commit 5ba3a9a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/NetMQ.Tests/NetMQ.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
<IsTestProject>true</IsTestProject>
<TargetFrameworks>net6.0;netcoreapp3.1;net47</TargetFrameworks>
<TargetFrameworks>net7.0;net48</TargetFrameworks>
</PropertyGroup>

<PropertyGroup>
Expand All @@ -26,7 +26,7 @@
<AssemblySearchPaths Condition="'$(BaseFrameworkPathOverrideForMono)' != ''">$(FrameworkPathOverride)/Facades;$(AssemblySearchPaths)</AssemblySearchPaths>
</PropertyGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net47' ">
<ItemGroup Condition=" '$(TargetFramework)' == 'net48' ">
<Reference Include="mscorlib" />
<Reference Include="System" />
<Reference Include="System.Core" />
Expand All @@ -48,7 +48,7 @@
</PackageReference>
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net47' ">
<ItemGroup Condition=" '$(TargetFramework)' == 'net48' ">
<PackageReference Include="ZeroMQ" Version="4.1.0.31" />
</ItemGroup>

Expand Down

0 comments on commit 5ba3a9a

Please sign in to comment.