dotnet: update xunit

This commit is contained in:
Corentin Le Molgat
2024-11-15 09:56:55 +01:00
parent 1273928df0
commit 79d194ceff
2 changed files with 7 additions and 4 deletions

View File

@@ -315,6 +315,9 @@ ref: [Mono `pinvoke#libraryname`](https://www.mono-project.com/docs/advanced/pin
### Issues
`dotnet` seems to use a previous package version ?<br>
You can clear your local cache using: `dotnet nuget locals all --clear`
Some issue related to this process
* [`PackageReference` only support `TargetFramework` condition](https://docs.microsoft.com/en-us/nuget/consume-packages/package-references-in-project-files#adding-a-packagereference-condition)
* [Nuget needs to support dependencies specific to target runtime #1660](https://github.com/NuGet/Home/issues/1660)

View File

@@ -33,10 +33,10 @@
<ItemGroup>
<Compile Include="@TEST_FILE_NAME@" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.6.3" />
<PackageReference Include="xunit" Version="2.5.0" />
<PackageReference Include="xunit.runner.console" Version="2.5.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
<PackageReference Include="xunit" Version="2.8.2" />
<PackageReference Include="xunit.runner.console" Version="2.8.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2" />
<PackageReference Include="@DOTNET_PROJECT@" Version="@PROJECT_VERSION_MAJOR@.@PROJECT_VERSION_MINOR@.*" />
</ItemGroup>
</Project>