Skip to content

Commit

Permalink
Merge pull request #4 from nullean/fix/net462
Browse files Browse the repository at this point in the history
explicitly reference Microsoft.TestPlatform.ObjectModel
  • Loading branch information
Mpdreamz authored Feb 9, 2024
2 parents 2f72aaf + eacf700 commit d3e6b85
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@

<ItemGroup>
<PackageReference Include="xunit" Version="2.4.1"/>
<PackageReference Include="Microsoft.TestPlatform.ObjectModel" Version="16.6.1" Condition="$(TargetFramework.StartsWith('net4'))" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
@@ -1,23 +1,19 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFrameworks>net8.0;net462</TargetFrameworks>
<IsPackable>false</IsPackable>
<PackageId>Nullean.Xunit.Partitions.Tests</PackageId>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\Nullean.Xunit.Partitions\Nullean.Xunit.Partitions.csproj" />
</ItemGroup>
<ItemGroup>
<DotNetCliToolReference Include="dotnet-xunit" Version="2.3.1" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Reactive.Linq" Version="4.0.0-preview00001" />
<PackageReference Include="FluentAssertions" Version="4.19.3" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.8.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0" />
</ItemGroup>
</Project>

0 comments on commit d3e6b85

Please sign in to comment.