aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Shader/Ryujinx.Graphics.Shader.csproj
diff options
context:
space:
mode:
authorMary <me@thog.eu>2020-11-15 19:27:15 +0100
committerGitHub <noreply@github.com>2020-11-15 19:27:15 +0100
commitaa129fdbdfd424f73da2b187fc28855f8ae90059 (patch)
treeafe0e93dfe246f75ed97ee8cf9d3eafb115a707e /Ryujinx.Graphics.Shader/Ryujinx.Graphics.Shader.csproj
parent8d0d299792a28af5121ac8ec031ae958b07dd944 (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.Graphics.Shader/Ryujinx.Graphics.Shader.csproj')
-rw-r--r--Ryujinx.Graphics.Shader/Ryujinx.Graphics.Shader.csproj18
1 files changed, 8 insertions, 10 deletions
diff --git a/Ryujinx.Graphics.Shader/Ryujinx.Graphics.Shader.csproj b/Ryujinx.Graphics.Shader/Ryujinx.Graphics.Shader.csproj
index b2d8a2a7..28a031a2 100644
--- a/Ryujinx.Graphics.Shader/Ryujinx.Graphics.Shader.csproj
+++ b/Ryujinx.Graphics.Shader/Ryujinx.Graphics.Shader.csproj
@@ -1,5 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">
+ <PropertyGroup>
+ <TargetFramework>net5.0</TargetFramework>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <ProjectReference Include="..\Ryujinx.Common\Ryujinx.Common.csproj" />
+ </ItemGroup>
+
<ItemGroup>
<EmbeddedResource Include="CodeGen\Glsl\HelperFunctions\MultiplyHighS32.glsl" />
<EmbeddedResource Include="CodeGen\Glsl\HelperFunctions\MultiplyHighU32.glsl" />
@@ -12,14 +20,4 @@
<EmbeddedResource Include="CodeGen\Glsl\HelperFunctions\TexelFetchScale_cp.glsl" />
</ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\Ryujinx.Common\Ryujinx.Common.csproj" />
- </ItemGroup>
-
- <PropertyGroup>
- <TargetFramework>netcoreapp3.1</TargetFramework>
- <LangVersion>8.0</LangVersion>
- <RuntimeIdentifiers>win-x64;osx-x64;linux-x64</RuntimeIdentifiers>
- </PropertyGroup>
-
</Project>