ASP.NET应用程序配置IIS后,会出现错误

前端之家收集整理的这篇文章主要介绍了ASP.NET应用程序配置IIS后,会出现错误前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我将ASP.NET Web应用程序更改为使用本地IIS,而不是IIS Express.现在重新打开解决方案后,加载应用程序时会出现以下错误

error : Project ‘Atlas2’ could not be opened because the Visual C# 2015 compiler could not be created. ‘Atlas2’ is already part of the workspace.

error : Project ‘Atlas2’ could not be opened because the Visual C#
2015 compiler could not be created. An item with the same key has
already been added.

有人可以帮助我如何重新加载项目?
我正在使用Visual Studio Team Services(TFS Online),如果有帮助的话.

解决方法

解决了我的问题.我卸载了项目并编辑了.csproj文件.我做了以下更改:

>< UseIISExpress> false< / UseIISExpress>真实
>删除< UseIIS> True< / UseIIS>
>删除< IISUrl> http:// localhost / MyWebApp< / IISUrl>

然后我重新加载了该项目.有效.其实它回滚使用IIS Express.

原文链接:https://www.f2er.com/aspnet/249983.html

猜你在找的asp.Net相关文章