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.
In website's NuGet window:
Microsoft.CodeDom.Providers.DotNetCompilerPlatform
web.config
, under:system.codedom > compilers > compiler
, changecompilerOptions
="/langversion:6 to 7I am able to compile it with default language setting but not with C# 7 option.
But below setting gives compile time error:
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__
Update
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+).
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.
For more info:
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:packages.config
, then you must uninstall and reinstallMicrosoft.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 configureweb.config
’ssystem.codedom
section).