diff options
| author | jduncanator <jduncanator@hotmail.com> | 2019-10-22 14:09:49 +1100 |
|---|---|---|
| committer | jduncanator <jduncanator@hotmail.com> | 2019-10-22 14:09:49 +1100 |
| commit | 1772128ce0fc058e6280001aace3a77a7a96897b (patch) | |
| tree | 73a73695bec8bffccceacdfe1ff0b8b88c427cbd | |
| parent | 2b5ec23aa747d46e7c9142c14c636e58fa5b5910 (diff) | |
Resolve Visual Studio build issues
Visual Studio defaults to a C# version of "latest major". Some of the new projects require C# 7.1 features.
| -rw-r--r-- | ARMeilleure/ARMeilleure.csproj | 1 | ||||
| -rw-r--r-- | Ryujinx.Tests/Ryujinx.Tests.csproj | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/ARMeilleure/ARMeilleure.csproj b/ARMeilleure/ARMeilleure.csproj index 9268dcbe..15e5c027 100644 --- a/ARMeilleure/ARMeilleure.csproj +++ b/ARMeilleure/ARMeilleure.csproj @@ -3,6 +3,7 @@ <PropertyGroup> <TargetFramework>netcoreapp2.1</TargetFramework> <RuntimeIdentifiers>win-x64;osx-x64;linux-x64</RuntimeIdentifiers> + <LangVersion>latest</LangVersion> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> diff --git a/Ryujinx.Tests/Ryujinx.Tests.csproj b/Ryujinx.Tests/Ryujinx.Tests.csproj index 9608422e..52832d86 100644 --- a/Ryujinx.Tests/Ryujinx.Tests.csproj +++ b/Ryujinx.Tests/Ryujinx.Tests.csproj @@ -14,6 +14,7 @@ <PropertyGroup> <GenerateAssemblyInfo>false</GenerateAssemblyInfo> + <LangVersion>latest</LangVersion> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Profile Release|AnyCPU'"> |
