Enabling c# 7 in a asp.net application

C#asp.netVisual Studio-2017C# 7.0

C# Problem Overview


I just started working on my old solution in Visual Studio 2017. Just opening the solution in the old IDE worked seamlessly. The c# application projects now default to the c# 7.0 compiler. The property pages of those project (compilation/advanced) let easily chose the targeted language version of the compiler, defaulting to the latest.

I cannot find a way to enable c# 7.0 in the asp.net web projects though. If I write a statement such as:

if (int.TryParse("1", out int myInt)) { ... }

the IDE warns me saying that I need to use version 7+ of the language.

My research on this topic shows I should target the specific c# version in the system.codedom compilers area of the web.config file, so to target the newest Roslyn version.

What I have now is:

  <system.codedom>
    <compilers>
      <compiler language="c#;cs;csharp" extension=".cs"
        type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.CSharpCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
        warningLevel="4" compilerOptions="/langversion:6 /nowarn:1659;1699;1701"/>

which targets c# 6. What are the correct settings for c# 7, provided that I have already downloaded the latest Roslyn with nuget?

Update Here is a screenshot of the available Compile options for a web project (it is Italian VS2017 but it should be easy to understand). No possibility to select the targeted c# version there.

Compile options

C# Solutions


Solution 1 - C#

In website's NuGet window:

  1. Uninstall Microsoft.CodeDom.Providers.DotNetCompilerPlatform
  2. Re-install it
  3. In web.config, under: system.codedom > compilers > compiler, change compilerOptions="/langversion:6 to 7

Solution 2 - C#

I am able to compile it with default language setting but not with C# 7 option. enter image description here

But below setting gives compile time error:

enter image description here

so you can keep your language version setting as default.

If you experimenting with Roslyn and not using Visual 2017 default compiler build then you may need to make some more changes

Select your project name and right click >> Properties Window >> Build and then add the below two options in "Conditional Compilation symbols" text box __DEMO__,__DEMO_EXPERIMENTAL__

enter image description here

Update

> In order to use C# 7.0, you need to use 2.0+ version of > Microsoft.Net.Compilers

enter image description here

after installing the latest version of Microsoft.Net.Compilers (2.0+) you can select the language version as C# 7.

so the best solution is to install the latest version of Microsoft.Net.Compilers (2.0+).

Solution 3 - C#

For C# 7.x support set the Build Configuration Language Version of project to C# latest minor version (latest)

Build Configuration Language Version

If you are using CodeDOM Providers for .NET Compiler Platform ("Roslyn") (e.g. the Microsoft.CodeDom.Providers.DotNetCompilerPlatform nuget package) set compilerOptions="/langversion:latest" in web.config for asp.net.

<system.codedom>
   <compilers>
      <compiler language="c#;cs;csharp" extension=".cs" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.CSharpCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.7.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
        warningLevel="4" compilerOptions="/langversion:latest /nowarn:1659;1699;1701"/>
   </compilers>
</system.codedom>

For more info:

Solution 4 - C#

If you try to install Microsoft.CodeDom.Providers.DotNetCompilerPlatform version 2.0.0 and your project targets a version of .net older than 4.6, then it will automatically use an older version of roslyn which only supports up to langversion 6. This is because newer versions of roslyn, including the first version to support csharp-7, require at least .net-4.6 to run. If your project targets an older version of .net, you will get the error message you see:

> CS1617 Invalid option 'latest' for /langversion; must be ISO-1, ISO-2, Default or an integer in range 1 to 6.

  1. Ensure that your project is targeting at least .net-4.6. Retarget if necessary.
  2. If your project still uses packages.config, then you must uninstall and reinstall Microsoft.CodeDom.Providers.DotNetCompilerPlatform to update your project file to point to the .net-4.6 variant of the nuget package. If you are using <PackageReference/>, you are all set (but you have to manually configure web.config’s system.codedom section).

Solution 5 - C#

You need to replace files in your project folder

/Bin/roslyn 

with files from NuGet package folder

/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.3.6.0/tools/Roslyn472

csv.exe in project folder not replaced during installation a new version of nuget. After replacing files it works excellent.

And do not forget to change .Net version to latest in project properties.

Solution 6 - C#

I was referencing a custom Project A that was referencing another custom Project B. I just readded the references from A to B and it seemed to work (for now).

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestiondavidthegreyView Question on Stackoverflow
Solution 1 - C#Hassan AbdullahView Answer on Stackoverflow
Solution 2 - C#Banketeshvar NarayanView Answer on Stackoverflow
Solution 3 - C#MathewsView Answer on Stackoverflow
Solution 4 - C#binkiView Answer on Stackoverflow
Solution 5 - C#Антон КовецкийView Answer on Stackoverflow
Solution 6 - C#Dirk BoerView Answer on Stackoverflow