You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After cloning the repo and opening it in Visual Studio 2017, IntelliSense complains about missing language features. This is since by default the last major version of C# is used (7.0) and certain features are 7.1+ (such as async Main). I suggest setting the LangVersion in the csproj files to latest:
<LangVersion>latest</LangVersion>
The text was updated successfully, but these errors were encountered:
After cloning the repo and opening it in Visual Studio 2017, IntelliSense complains about missing language features. This is since by default the last major version of C# is used (7.0) and certain features are 7.1+ (such as async Main). I suggest setting the LangVersion in the csproj files to latest:
The text was updated successfully, but these errors were encountered: