We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac96a3e commit 6e6d4efCopy full SHA for 6e6d4ef
Assets/MRTK/Tools/MSBuild/Scripts/MSBuildTools.cs
@@ -25,7 +25,13 @@ public static class MSBuildTools
25
BuildTarget.WSAPlayer
26
};
27
28
- public const string CSharpVersion = "7.3";
+ public const string CSharpVersion =
29
+#if UNITY_2020_2_OR_NEWER
30
+ "8.0";
31
+#else
32
+ "7.3";
33
+#endif
34
+
35
public readonly static Version DefaultMinUWPSDK = new Version("10.0.14393.0");
36
37
private static readonly string uwpMinPlatformVersion = EditorUserBuildSettings.wsaMinUWPSDK;
0 commit comments