在项目目录下的.vs文件夹下,打开对应config文件夹,修改applicationhost.config
在<sites></sites>节点下对应的site节点删除掉即可。
<sites>
<site name="WebSite1" id="1" serverAutoStart="true">
<application path="/">
<virtualDirectory path="/" physicalPath="%IIS_SITES_HOME%WebSite1" />
</application>
<bindings>
<binding protocol="http" bindingInformation=":8080:localhost" />
</bindings>
</site>
<!-- 删除该节点
<site name="Com.CN.Web" id="2">
<application path="/" applicationPool="Clr4IntegratedAppPool">
<virtualDirectory path="/" physicalPath="C:UsersAllenLiuTestSourceCodePMSDevelopCom.CN.Web" />
</application>
<bindings>
<binding protocol="https" bindingInformation="*:44308:localhost" />
<binding protocol="http" bindingInformation="*:56076:localhost" />
</bindings>
</site>
-->
<siteDefaults>
<!-- To enable logging, please change the below attribute "enabled" to "true" -->
<logFile logFormat="W3C" directory="%AppData%MicrosoftIISExpressLogs" enabled="false" />
<traceFailedRequestsLogging directory="%AppData%Microsoft" enabled="false" maxLogFileSizeKB="1024" />
</siteDefaults>
<applicationDefaults applicationPool="Clr4IntegratedAppPool" />
<virtualDirectoryDefaults allowSubDirConfig="true" />
</sites>