Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Feature 'using declarations' is not available in C# 7.3. Please use language version 8.0 or greater - Error on one machine but works on another

Tags:

c#

.net-4.6

When using Visual Studio Enterprise 16.3.7 on two separate machines one builds fine and the other machine throws the error:

Feature 'using declarations' is not available in C# 7.3. Please use language version 8.0 or greater.

enter image description here

enter image description here

This can easily be solved on the none working machine by setting LangVersion in .csproj as suggested here https://stackoverflow.com/a/48085575/3850405 or let Visual Studio automatically fix it like the print screen above.

<LangVersion>8.0</LangVersion> 

What I can't understand is why one machine builds fine without this line in .csproj and the other machine needs it?

like image 569
Ogglas Avatar asked Oct 30 '19 11:10

Ogglas


People also ask

What is using declaration in c#?

With the C# 8.0 update, Microsoft has introduced the using declaration feature. This feature allows us to declare a disposable object with the keyword using so the object will be disposed of when it goes out of the scope.

How can I change the language of C#?

To choose the C# language latest versions, In Visual Studio, from the Solution Explorer, right-click on the project and select Properties -> Build Tab. And, then Select Advanced button. This will bring “Advanced Build Settings” windows, where you can check the drop-down option for “Language Version”.

What is the latest version of C#?

As of November 2022, the most recent stable version of the language is C# 11.0, which was released in 2022 in . NET 7.0.


2 Answers

I received the same error, but I had simply forgotten to include the

<LangVersion>8.0</LangVersion> 

attribute in ALL the .csproj files in the solution. The following is my current c# 8 setup:

  <PropertyGroup>     <TargetFramework>netcoreapp3.1</TargetFramework>     <LangVersion>8.0</LangVersion>     <Nullable>enable</Nullable>     <NullableContextOptions>enable</NullableContextOptions>   </PropertyGroup> 

I found the following documents to be the most helpful when migrating from core 2.2 to 3.x:

MSDN 2.2 -> 3.0

MSDN 3.0 -> 3.1

like image 180
James LoForti Avatar answered Oct 10 '22 08:10

James LoForti


This can be because the compiler uses by default different C# language versions for different Target Frameworks.

To override the default C# language, add to project file (as suggested in question):

<PropertyGroup>    <LangVersion>8.0</LangVersion> </PropertyGroup> 

or:

<PropertyGroup>    <LangVersion>latest</LangVersion> </PropertyGroup> 

Note:
C# 8.0 is supported only on .NET Core 3.x and newer versions. Many of the newest features require library and runtime features introduced in .NET Core 3.x.
Source: C# language versioning - Microsoft Docs


See C# language versioning - Microsoft Docs for the default C# language versions for the different target frameworks and how to manually select the C# language version.

See also the stack overflow answer Does C# 8 support the .NET Framework? for more information on this topic.


Here is part of the C# language versioning - Microsoft Docs article:

C# language versioning

The latest C# compiler determines a default language version based on your project's target framework or frameworks. Visual Studio doesn't provide a UI to change the value, but you can change it by editing the csproj file. The choice of default ensures that you use the latest language version compatible with your target framework. You benefit from access to the latest language features compatible with your project's target. This default choice also ensures you don't use a language that requires types or runtime behavior not available in your target framework. Choosing a language version newer than the default can cause hard to diagnose compile-time and runtime errors.

The rules in this article apply to the compiler delivered with Visual Studio 2019 or the .NET SDK. The C# compilers that are part of the Visual Studio 2017 installation or earlier .NET Core SDK versions target C# 7.0 by default.

C# 8.0 is supported only on .NET Core 3.x and newer versions. Many of the newest features require library and runtime features introduced in .NET Core 3.x.

Defaults

The compiler determines a default based on these rules:

╔══════════════════╦═════════╦═════════════════════════════╗ ║ Target framework ║ version ║ C# language version default ║ ╠══════════════════╬═════════╬═════════════════════════════╣ ║ .NET             ║ 6.x     ║ C# 10                       ║ ║ .NET             ║ 5.x     ║ C# 9.0                      ║ ║ .NET Core        ║ 3.x     ║ C# 8.0                      ║ ║ .NET Core        ║ 2.x     ║ C# 7.3                      ║ ║ .NET Standard    ║ 2.1     ║ C# 8.0                      ║ ║ .NET Standard    ║ 2.0     ║ C# 7.3                      ║ ║ .NET Standard    ║ 1.x     ║ C# 7.3                      ║ ║ .NET Framework   ║ all     ║ C# 7.3                      ║ ╚══════════════════╩═════════╩═════════════════════════════╝ 

Override a default

If you must specify your C# version explicitly, you can do so in several ways:

  • Manually edit your project file.
  • Set the language version for multiple projects in a subdirectory.
  • Configure the LangVersion compiler option.

Edit the project file

You can set the language version in your project file. For example, if you explicitly want access to preview features, add an element like this:

<PropertyGroup>    <LangVersion>preview</LangVersion> </PropertyGroup> 

The value preview uses the latest available preview C# language version that your compiler supports.

Configure multiple projects

To configure multiple projects, you can create a Directory.Build.props file that contains the <LangVersion> element. You typically do that in your solution directory. Add the following to a Directory.Build.props file in your solution directory:

<Project>  <PropertyGroup>    <LangVersion>preview</LangVersion>  </PropertyGroup> </Project> 

Now, builds in every subdirectory of the directory containing that file will use the preview C# version. For more information, see the article on Customize your build.

C# language version reference

The following table shows all current C# language versions. Your compiler may not necessarily understand every value if it's older. If you install the latest .NET SDK, then you have access to everything listed.

╔═══════════════════════╦══════════════════════════════════════════════════════════════════════════════════════════════════════════╗ ║ Value                 ║ Meaning                                                                                                  ║ ╠═══════════════════════╬══════════════════════════════════════════════════════════════════════════════════════════════════════════╣ ║ preview               ║ The compiler accepts all valid language syntax from the latest preview version.                          ║ ║ latest                ║ The compiler accepts syntax from the latest released version of the compiler (including minor version).  ║ ║ latestMajor (default) ║ The compiler accepts syntax from the latest released major version of the compiler.                      ║ ║ 10.0                  ║ The compiler accepts only syntax that is included in C# 10 or lower.                                     ║ ║ 9.0                   ║ The compiler accepts only syntax that is included in C# 9 or lower.                                      ║ ║ 8.0                   ║ The compiler accepts only syntax that is included in C# 8.0 or lower.                                    ║ ║ 7.3                   ║ The compiler accepts only syntax that is included in C# 7.3 or lower.                                    ║ ║ 7.2                   ║ The compiler accepts only syntax that is included in C# 7.2 or lower.                                    ║ ║ 7.1                   ║ The compiler accepts only syntax that is included in C# 7.1 or lower.                                    ║ ║ 7                     ║ The compiler accepts only syntax that is included in C# 7.0 or lower.                                    ║ ║ 6                     ║ The compiler accepts only syntax that is included in C# 6.0 or lower.                                    ║ ║ 5                     ║ The compiler accepts only syntax that is included in C# 5.0 or lower.                                    ║ ║ 4                     ║ The compiler accepts only syntax that is included in C# 4.0 or lower.                                    ║ ║ 3                     ║ The compiler accepts only syntax that is included in C# 3.0 or lower.                                    ║ ║ ISO-2 (or 2)          ║ The compiler accepts only syntax that is included in ISO/IEC 23270:2006 C# (2.0).                        ║ ║ ISO-1 (or 1)          ║ The compiler accepts only syntax that is included in ISO/IEC 23270:2003 C# (1.0/1.2).                    ║ ╚═══════════════════════╩══════════════════════════════════════════════════════════════════════════════════════════════════════════╝ 
like image 44
Eliahu Aaron Avatar answered Oct 10 '22 08:10

Eliahu Aaron