We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We currently force Preview as the lang version in our Prerequisites package/dependency. This is now unnecessary since C# 9.0 is stable now.
Preview
But we now need to detect the whole range of valid values for the LangVersion property that users might configure, as documented in https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/compiler-options/langversion-compiler-option.
LangVersion
We should check for C# 9.0+ explicitly (which includes latest, latestmajor and preview values) instead.
latest
latestmajor
preview
The text was updated successfully, but these errors were encountered:
8e66ac4
No branches or pull requests
We currently force
Preview
as the lang version in our Prerequisites package/dependency. This is now unnecessary since C# 9.0 is stable now.But we now need to detect the whole range of valid values for the
LangVersion
property that users might configure, as documented in https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/compiler-options/langversion-compiler-option.We should check for C# 9.0+ explicitly (which includes
latest
,latestmajor
andpreview
values) instead.The text was updated successfully, but these errors were encountered: