Skip to content

Commit

Permalink
Update referencing packages version on the unit test project
Browse files Browse the repository at this point in the history
  • Loading branch information
jsakamoto committed Jun 1, 2023
1 parent e9303a7 commit df01311
Showing 1 changed file with 7 additions and 18 deletions.
25 changes: 7 additions & 18 deletions IPAddressRange.Test/IPAddressRange.Test.csproj
Original file line number Diff line number Diff line change
@@ -1,36 +1,25 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net6.0;net452</TargetFrameworks>
<TargetFrameworks>net6.0;net462</TargetFrameworks>
<LangVersion>7.0</LangVersion>
<IsPackable>false</IsPackable>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.0" />
<PackageReference Include="MSTest.TestAdapter" Version="2.2.10" />
<PackageReference Include="MSTest.TestFramework" Version="2.2.10" />
<PackageReference Include="coverlet.collector" Version="3.2.0">
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.6.0" />
<PackageReference Include="MSTest.TestAdapter" Version="3.0.3" />
<PackageReference Include="MSTest.TestFramework" Version="3.0.3" />
<PackageReference Include="coverlet.collector" Version="6.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="ChainingAssertion-MSTest.Bin" Version="2.1.0" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\IPAddressRange\IPAddressRange.csproj" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net6.0'">
<PackageReference Include="ChainingAssertion-MSTest.Bin">
<Version>2.1.0</Version>
</PackageReference>
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net452'">
<PackageReference Include="ChainingAssertion.Bin">
<Version>2.0.0</Version>
</PackageReference>
</ItemGroup>

</Project>

0 comments on commit df01311

Please sign in to comment.