Starting with Visual Studio 2019 Preview 4 and RC, we’ll be adjusting how C# versions are treated in .NET tooling. The version of C# used by your project will now be determined by target framework.
Summary of changes
The most important change is that the version of C# used by tooling by default will be determined by the target framework of your project.
Additionally, we are adding two new Language Version (LangVer) values: LatestMajor and Preview. Here’s how they stack up compared with the currently supported list of values:
LangVersion | Meaning |
---|---|
ISO-1 | C# 1.0/1.2 |
ISO-2 | C# 2.0 |
3 | C# 3.0 |
4 | C# 4.0 |
5 | C# 5.0 |
6 | C# 6.0 |
7 | C# 7.0 |
7.1 | C# 7.1 |
7.2 | C# 7.2 |
7.3 | C# 7.3 |
8.0 | C# 8.0 |
LatestMajor | Latest supported major C# language version |
Preview | Latest available preview C# language version |
Latest | Latest supported C# language version (including minor version) |
The meaning of “supported C# language version” differs based on target, and the default used is also determined by the target of your project.
How this works for .NET Core 3.0 and .NET Standard 2.1
C# 8.0 has been built with .NET Core 3.0 and .NET Standard 2.1 in mind. Many of its features only work on .NET Core 3.0. This means .NET Core 3.0 and .NET Standard 2.1 are the only .NET Core and .NET Standard versions where C# 8.0 is supported.
How this works for all other target frameworks
Because C# 8.0 has been built for .NET Core 3.0 and .NET Standard 2.1, it will not be supported outside of .NET Core 3.0 and any platform implementing .NET Standard 2.1.
Support and compatibility for preview features
This change means that C# 8.0 preview will be the default for .NET Core 3.0 preview in all .NET tools, including Visual Studio. The way to think about support in this world is slightly different than before. We distinguish support today along the following lines:
- Any C# 7.3 and lower feature or behavior is fully supported and fully compatible in any context (.NET Core 3.0, .NET Core 2.x, .NET Framework, etc.). No change from what exists today.
- Any C# preview feature is unsupported.
- There is no compatibility guarantee from one C# preview to another.
In short, if you use C# 8.0 preview with Visual Studio 2019, some features and behaviors may change between now and when C# 8.0 fully releases.
Happy hacking!
The post An update to C# versions and C# tooling appeared first on .NET Blog.