diff options
| author | Ac_K <Acoustik666@gmail.com> | 2020-05-04 04:14:48 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-04 12:14:48 +1000 |
| commit | 4c54f36c380683ef4575becf516953b7b0dfd6fc (patch) | |
| tree | 7ca01cf2b71e4ce88dcd393a74d7e0420916a433 /Ryujinx.Graphics.Texture | |
| parent | 2285a1792f3d7b1679466976675e5cee7921af19 (diff) | |
Upgrade projects to C#8 (#1193)
Some parts of our code needs C# 8 who isn't set as default in Visual Studio. To fix this we have to set the C# version correctly in the csproj files and then we are be able to build the project using Visual Studio.
Diffstat (limited to 'Ryujinx.Graphics.Texture')
| -rw-r--r-- | Ryujinx.Graphics.Texture/Ryujinx.Graphics.Texture.csproj | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Ryujinx.Graphics.Texture/Ryujinx.Graphics.Texture.csproj b/Ryujinx.Graphics.Texture/Ryujinx.Graphics.Texture.csproj index 861fd287..dcd70821 100644 --- a/Ryujinx.Graphics.Texture/Ryujinx.Graphics.Texture.csproj +++ b/Ryujinx.Graphics.Texture/Ryujinx.Graphics.Texture.csproj @@ -6,6 +6,7 @@ <PropertyGroup> <TargetFramework>netcoreapp3.1</TargetFramework> + <LangVersion>8.0</LangVersion> <RuntimeIdentifiers>win-x64;osx-x64;linux-x64</RuntimeIdentifiers> <AllowUnsafeBlocks>true</AllowUnsafeBlocks> </PropertyGroup> |
