在Visual Studio 2017中,当按 Ctrl + F5 运行我的ASP.NET Framework Web API服务器时,我得到:
找不到文件... bin \ roslyn \ csc.exe:
在包管理器控制台中运行Update-Package Microsoft.CodeDom.Providers.DotNetCompilerPlatform -r
并不是永久性的修复,因为缺少包文件时,服务器错误会再次出现。
如何一劳永逸地消除此错误,以便在我重新打开,构建和运行Visual Studio解决方案后立即自动(无提示)重新安装所需的软件包?
编辑-重现该错误的代码:http://schulze.000webhostapp.com/vs/SrvrErr-reproduce.zip (最初来自https://github.com/aspnet/AspNetDocs/tree/master/aspnet/web-api/overview/advanced/calling-a-web-api-from-a-net-client/sample/server/ProductsApp)
答案 0 :(得分:1)
我找到了办法。在与项目文件相同的目录(扩展名为.csproj
)中,有一个Web.config
文件,其中包含XML代码。
我在纯文本编辑器中打开了Web.config
文件。 -在标记configuration | system.codedom | compilers | compiler language="c#;cs;csharp"
中,我完全删除了下面代码中的type
属性。
<?xml version="1.0" encoding="utf-8"?>
<!--
For more information on how to configure your ASP.NET application, please visit
https://go.microsoft.com/fwlink/?LinkId=301879
-->
<configuration>
<appSettings></appSettings>
<system.web></system.web>
<system.webServer></system.webServer>
<runtime></runtime>
<system.codedom>
<compilers>
<compiler language="c#;cs;csharp" extension=".cs"
type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.CSharpCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
warningLevel="4" compilerOptions="/langversion:default /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.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
warningLevel="4" compilerOptions="/langversion:default /nowarn:41008 /define:_MYTYPE=\"Web\" /optionInfer+"/>
</compilers>
</system.codedom>
</configuration>
简而言之,删除以type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.CSharpCodeProvider,
开头的行。
(大概,相同的修补程序对Visual Basic和Csharp都适用,但我还没有尝试过。)
Server Error in '/' Application
消失了。
出于挑衅,我什至尝试删除Visual Studio解决方案的整个“包”目录。我(重新)构建解决方案后,便会自动无提示地重新创建它。