標籤:
VS2015新增了對C#6的支援.
在新的Web項目模板中通過引入nuget包Microsoft.CodeDom.Providers.DotNetCompilerPlatform:1.0.0並在web.config中添加
<system.codedom> <compilers> <compiler language="c#;cs;csharp" extension=".cs" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.CSharpCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" warningLevel="4" compilerOptions="/langversion:6 /nowarn:1659;1699;1701" /> <compiler language="vb;vbs;visualbasic;vbscript" extension=".vb" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.VBCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" warningLevel="4" compilerOptions="/langversion:14 /nowarn:41008 /define:_MYTYPE=\"Web\" /optionInfer+" /> </compilers> </system.codedom>
來提供Razor的C#6.0支援(舊項目也可以通過自己添加來獲得支援)
但是在當你修改了目標框架(例如從4.5升級到4.6)之後, 網站將會無法開啟並提示
“/”應用程式中的伺服器錯誤。編譯錯誤說明: 在編譯向該請求提供服務所需資源的過程中出現錯誤。請檢查下列特定錯誤詳細資料並適當地修改原始碼。
編譯器錯誤訊息: CS1617: 選項“6”對 /langversion 無效;必須是 ISO-1、ISO-2、3、4、5 或 Default
源錯誤:
源檔案: 行: 0
顯示詳細的編譯器輸出:
C:\Program Files (x86)\IIS Express> "C:\Windows\Microsoft.NET\Framework\v4.0.30319\csc.exe" /t:library /utf8output /R:"C:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\vs\...Microsoft (R) Visual C# Compiler version 4.6.0081.0for C# 5Copyright (C) Microsoft Corporation. All rights reserved.This compiler is provided as part of the Microsoft (R) .NET Framework, but only supports language versions up to C# 5, which is no longer the latest version. For compilers that support newer versions of the C# programming language, see http://go.microsoft.com/fwlink/?LinkID=533240error CS1617: 選項“6”對 /langversion 無效;必須是 ISO-1、ISO-2、3、4、5 或 Default |
|
查看web.config中的配置, 發現已被自動修改為(似乎一般是改cs不改vb, 往低了改會連vb一起改)
<system.codedom> <compilers> <compiler language="c#;cs;csharp" extension=".cs" type="Microsoft.CSharp.CSharpCodeProvider, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" warningLevel="4" compilerOptions="/langversion:6 /nowarn:1659;1699;1701"> <providerOption name="CompilerVersion" value="v4.0"/> </compiler> <compiler language="vb;vbs;visualbasic;vbscript" extension=".vb" type="Microsoft.VisualBasic.VBCodeProvider, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" warningLevel="4" compilerOptions="/langversion:14 /nowarn:41008 /define:_MYTYPE=\"Web\" /optionInfer+"> <providerOption name="CompilerVersion" value="v4.0"/> </compiler> </compilers> </system.codedom>
而這是無法正常工作的, 需要手動修改為最初的結果
懷疑這應該是VS的一個bug, 有誰知道反饋渠道的幫忙提一下吧.
VS2015 新Web項目(C#6)出現CS1617錯誤的解決