C# 7 features don’t work within a web project on Visual Studio 2017 RC

I have several projects in the solution, and the C# 7 features, such as tuples and throw expressions, work fine in all of the library projects, but there is a (non Core) web project that doesn’t compile due to errors on the C# 7 features. Right after compiling, the error window quickly clears itself, presumably because the IDE/editor compiles the same units without error. I have to use the output window to see the compiler errors. It is as though the IDE/editor are assuming C# 7, but the compiler used in the build is not.

I’ve tried adding “__DEMO__,__DEMO_EXPERIMENTAL__” to the conditional compilation symbols, to no avail. I’ve experimented with targeting different version of the framework and have edited the web.config, including the compilation and targetFramework tags of system.web.

Example errors:

if (!config.Properties.TryGetValue(modelId, out var model)) // error CS1003: Syntax error, ',' expected
if (modelDescription is ComplexTypeModelDescription complexTypeModelDescription) // error CS1026: ) expected

Here are the first few lines of the csproj file for the project:

<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <Import Project="..packagesMicrosoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.3buildMicrosoft.CodeDom.Providers.DotNetCompilerPlatform.props" Condition="Exists('..packagesMicrosoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.3buildMicrosoft.CodeDom.Providers.DotNetCompilerPlatform.props')" />
  <Import Project="..packagesMicrosoft.Net.Compilers.1.3.2buildMicrosoft.Net.Compilers.props" Condition="Exists('..packagesMicrosoft.Net.Compilers.1.3.2buildMicrosoft.Net.Compilers.props')" />
  <Import Project="$(MSBuildExtensionsPath)$(MSBuildToolsVersion)Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)$(MSBuildToolsVersion)Microsoft.Common.props')" />

Update: I tried creating a new web project using the latest template in VS 2017 RC and copying in my source files. Same thing.

I also tried explicitly setting Project | Properties | Build | Advanced | Language Version to 7. Results in “Invalid option ‘7’ for /langversion”.

Answers:

Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.

Method 1

The solution is to update the Microsoft.Net.Compilers nuget package to >=2.0.0. As of now, for the 2.0.0 version to appear, the “Include prerelease” checkbox at the top of the package manager must be checked. With this installed, the Language version advanced setting doesn’t have to be overridden from Default.

Method 2

I got here trying to answer why C #7 features weren’t working in VS2017. I had just upgraded an existing project just like the answer said, and at the end had gotten a message about the compiler DLL being in use and VS needing a restart.

Afterward I could type C# 7 code in the IDE fine, but it would always fail on compilation of any new feature usage. Turns out the .csproj file itself had imports for the new and old compiler like below. These did not show in the references list in the project. I deleted the old imports lines and was good to go.

<?xml version="1.0" encoding="utf-8"?><Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="packagesMicrosoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.8buildnet45Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props" Condition="Exists('packagesMicrosoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.8buildnet45Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props')" />
  <Import Project="packagesMicrosoft.Net.Compilers.2.8.2buildMicrosoft.Net.Compilers.props" Condition="Exists('packagesMicrosoft.Net.Compilers.2.8.2buildMicrosoft.Net.Compilers.props')" />
  <Import Project="..packagesMicrosoft.Net.Compilers.1.3.2buildMicrosoft.Net.Compilers.props" Condition="Exists('..packagesMicrosoft.Net.Compilers.1.3.2buildMicrosoft.Net.Compilers.props')" />
  <Import Project="..packagesMicrosoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.1buildMicrosoft.CodeDom.Providers.DotNetCompilerPlatform.props" Condition="Exists('..packagesMicrosoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.1buildMicrosoft.CodeDom.Providers.DotNetCompilerPlatform.props')" />
  <Import Project="$(MSBuildExtensionsPath)$(MSBuildToolsVersion)Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)$(MSBuildToolsVersion)Microsoft.Common.props')" />
  <PropertyGroup>
…


All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0

0 0 votes
Article Rating
Subscribe
Notify of
guest

0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x