diff options
| author | Mary <me@thog.eu> | 2020-11-15 19:27:15 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-15 19:27:15 +0100 |
| commit | aa129fdbdfd424f73da2b187fc28855f8ae90059 (patch) | |
| tree | afe0e93dfe246f75ed97ee8cf9d3eafb115a707e /Ryujinx.Memory.Tests | |
| parent | 8d0d299792a28af5121ac8ec031ae958b07dd944 (diff) | |
infra: Migrate to .NET 5 (#1694)
* infra: Migrate to .NET 5
This migrate projects and CI to .NET 5
* Remove language version restrictions (now on 9.0 by default)
* infra: pin .NET 5 to avoid later issues
* infra: Cleanup csproj files
* infra: update dependencies
* infra: Add temporary workaround for a bug in Vector128.Create
see https://github.com/dotnet/runtime/issues/44704 for more informations
Diffstat (limited to 'Ryujinx.Memory.Tests')
| -rw-r--r-- | Ryujinx.Memory.Tests/Ryujinx.Memory.Tests.csproj | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Ryujinx.Memory.Tests/Ryujinx.Memory.Tests.csproj b/Ryujinx.Memory.Tests/Ryujinx.Memory.Tests.csproj index c7c15185..38a241b9 100644 --- a/Ryujinx.Memory.Tests/Ryujinx.Memory.Tests.csproj +++ b/Ryujinx.Memory.Tests/Ryujinx.Memory.Tests.csproj @@ -1,13 +1,12 @@ <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> - <TargetFramework>netcoreapp3.1</TargetFramework> - + <TargetFramework>net5.0</TargetFramework> <IsPackable>false</IsPackable> </PropertyGroup> <ItemGroup> - <PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.7.0" /> + <PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.8.0" /> <PackageReference Include="NUnit" Version="3.12.0" /> <PackageReference Include="NUnit3TestAdapter" Version="3.17.0" /> </ItemGroup> |
