aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Debugger
diff options
context:
space:
mode:
authorAc_K <Acoustik666@gmail.com>2020-05-04 04:14:48 +0200
committerGitHub <noreply@github.com>2020-05-04 12:14:48 +1000
commit4c54f36c380683ef4575becf516953b7b0dfd6fc (patch)
tree7ca01cf2b71e4ce88dcd393a74d7e0420916a433 /Ryujinx.Debugger
parent2285a1792f3d7b1679466976675e5cee7921af19 (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.Debugger')
-rw-r--r--Ryujinx.Debugger/Ryujinx.Debugger.csproj1
1 files changed, 1 insertions, 0 deletions
diff --git a/Ryujinx.Debugger/Ryujinx.Debugger.csproj b/Ryujinx.Debugger/Ryujinx.Debugger.csproj
index 90ec5b46..4888d756 100644
--- a/Ryujinx.Debugger/Ryujinx.Debugger.csproj
+++ b/Ryujinx.Debugger/Ryujinx.Debugger.csproj
@@ -2,6 +2,7 @@
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
+ <LangVersion>8.0</LangVersion>
<Configurations>Debug;Release;Profile Release;Profile Debug</Configurations>
</PropertyGroup>