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.
@@ -2,6 +2,7 @@
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
+ <LangVersion>8.0</LangVersion>
<RuntimeIdentifiers>win-x64;osx-x64;linux-x64</RuntimeIdentifiers>
</PropertyGroup>
<Configurations>Debug;Release;Profile Debug;Profile Release</Configurations>
<Configurations>Debug;Release;Profile Release;Profile Debug</Configurations>
@@ -7,6 +7,7 @@
@@ -10,6 +10,7 @@
@@ -3,6 +3,7 @@
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
@@ -16,6 +16,7 @@
@@ -6,6 +6,7 @@
<OutputType>Exe</OutputType>
<IsPackable>false</IsPackable>