Strange ASP.Net Error: .net 4.6.1, VS2015 - interpolated strings not supported?
Strange ASP.Net Error: .net 4.6.1, VS2015 - interpolated strings not supported?
奇怪的 ASP.Net 错误(WebForms):.net 4.6.1, VS2015
Error BC36716 Visual Basic 12.0 does not support interpolated strings.
不知道我为什么会收到这个。为什么在VS2015下报VB12.0?
<system.web>
<compilation debug="true" strict="true" explicit="true" targetFramework="4.6.1"/>
<httpRuntime targetFramework="4.6.1"/>
</system.web>
请查看最后一个答案
http://forums.asp.net/t/2061764.aspx?VS2015+claims+it+does+not+support+interpolated+strings
Found the answer here if anyone else has the same problem. It looks
like the Roslyn compiler for Web Site project types is not icluded
with VS2015 and must be downloaded separately. See:
http://blogs.msdn.com/b/webdev/archive/2014/05/12/enabling-the-net-compiler-platform-roslyn-in-asp-net-applications.aspx
希望对您有所帮助
我什么都试过了!直到这个工作。我删除了我从 NuGet 安装的两个包。它们都来自 Microsoft,一个是 Roslyn 包,另一个是编译器。当我把它们从我的项目中取出时,我所有关于内插字符串的错误都消失了。我是运行Visual Studio2017.
所以查看你的包并删除你不需要的包(可能是像我一样从旧设置中遗留下来的)...
我希望这对某人有所帮助。
奇怪的 ASP.Net 错误(WebForms):.net 4.6.1, VS2015
Error BC36716 Visual Basic 12.0 does not support interpolated strings.
不知道我为什么会收到这个。为什么在VS2015下报VB12.0?
<system.web>
<compilation debug="true" strict="true" explicit="true" targetFramework="4.6.1"/>
<httpRuntime targetFramework="4.6.1"/>
</system.web>
请查看最后一个答案 http://forums.asp.net/t/2061764.aspx?VS2015+claims+it+does+not+support+interpolated+strings
Found the answer here if anyone else has the same problem. It looks like the Roslyn compiler for Web Site project types is not icluded with VS2015 and must be downloaded separately. See: http://blogs.msdn.com/b/webdev/archive/2014/05/12/enabling-the-net-compiler-platform-roslyn-in-asp-net-applications.aspx
希望对您有所帮助
我什么都试过了!直到这个工作。我删除了我从 NuGet 安装的两个包。它们都来自 Microsoft,一个是 Roslyn 包,另一个是编译器。当我把它们从我的项目中取出时,我所有关于内插字符串的错误都消失了。我是运行Visual Studio2017.
所以查看你的包并删除你不需要的包(可能是像我一样从旧设置中遗留下来的)...
我希望这对某人有所帮助。