Skip to content

Commit

Permalink
feat: Use C# 8.0 by default
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Uno is now built using VS2019 16.4

It does not support building Xamarin iOS/Android applications with Visual Studio 2017.

Linker errors may occur such as:
```
Java.Interop.Tools.Diagnostics.XamarinAndroidException: error XA2006: Could not resolve reference to 'System.Collections.Generic.Queue`1'
(defined in assembly 'Uno.UI, Version=255.255.255.255, Culture=neutral, PublicKeyToken=null') with scope 'mscorlib, Version=2.0.5.0,
Culture=neutral, PublicKeyToken=7cec85d7bea7798e'.
```
  • Loading branch information
jeromelaban committed Mar 20, 2020
1 parent 4aa74ed commit 9431fc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<CreateHardLinksForAdditionalFilesIfPossible>true</CreateHardLinksForAdditionalFilesIfPossible>
<CreateHardLinksForPublishFilesIfPossible>true</CreateHardLinksForPublishFilesIfPossible>

<LangVersion>7.3</LangVersion>
<LangVersion>8.0</LangVersion>

<!-- Version management is now done through NuGet, this avoids issues related version mismatch -->
<Version>255.255.255.255</Version>
Expand Down

0 comments on commit 9431fc9

Please sign in to comment.