Compiler errors Visual studio 2013可以';无法打开共享项目

Compiler errors Visual studio 2013可以';无法打开共享项目,compiler-errors,visual-studio-2013,directory,file-sharing,shared-directory,Compiler Errors,Visual Studio 2013,Directory,File Sharing,Shared Directory,试图将我的项目副本发送到一所大学,但当他们试图打开它时,他们得到了一个错误。我只压缩了文件,甚至尝试通过共享文件夹共享它,但仍然是相同的错误 错误 http ://localhost:1185 : error : Error opening web ://localhost:1185. Unable to open the Web site 'http ://localhost:1185'. The Web server '://localhost:1185' could not be fo

试图将我的项目副本发送到一所大学,但当他们试图打开它时,他们得到了一个错误。我只压缩了文件,甚至尝试通过共享文件夹共享它,但仍然是相同的错误

错误

http ://localhost:1185 : error  : Error opening web ://localhost:1185. Unable to open the Web site 'http ://localhost:1185'.  The Web server '://localhost:1185' could not be found.
尝试跟随Bangla Gopal Surya Prakash关于代码项目的文章:

但还是无法让它发挥作用

编辑


关于如何改进问题的任何提示?

在记事本中打开
.csproj
文件,从文件底部的“项目扩展名”部分删除IIS设置并保存。现在,您可以在VisualStudio中再次打开它,并从项目属性重新配置web服务器设置

从示例项目中,这是要删除的内容:

<!-- remove from here -->
  <ProjectExtensions>
    <VisualStudio>
      <FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">
        <WebProjectProperties>
          <UseIIS>True</UseIIS>
          <AutoAssignPort>True</AutoAssignPort>
          <DevelopmentServerPort>6446</DevelopmentServerPort>
          <DevelopmentServerVPath>/</DevelopmentServerVPath>
          <IISUrl>http://localhost:6446/</IISUrl>
          <NTLMAuthentication>False</NTLMAuthentication>
          <UseCustomServer>False</UseCustomServer>
          <CustomServerUrl>
          </CustomServerUrl>
          <SaveServerSettingsInUserFile>False</SaveServerSettingsInUserFile>
        </WebProjectProperties>
      </FlavorProperties>
    </VisualStudio>
  </ProjectExtensions>
<!-- remove to here -->

真的
真的
6446
/
http://localhost:6446/
假的
假的
假的

非常感谢您的回答