Skip to content

Commit

Permalink
chore: update NUnit to 4.1.0 on supported targets (#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
hazzik authored Apr 4, 2024
1 parent b543c11 commit 318ac04
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/Iesi.Collections.Test/Iesi.Collections.Test.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,14 @@
<EnableUnsafeBinaryFormatterSerialization>true</EnableUnsafeBinaryFormatterSerialization>
</PropertyGroup>

<ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net40'">
<PackageReference Include="NUnit" Version="3.14.0" />
<PackageReference Include="NUnitLite" Version="3.14.0" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' != 'net40'">
<PackageReference Include="NUnit" Version="4.1.0" />
<PackageReference Include="NUnitLite" Version="4.1.0" />
<PackageReference Include="NUnit.Analyzers" Version="4.1.0">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
Expand Down

0 comments on commit 318ac04

Please sign in to comment.