当前位置: 代码迷 >> .NET相关 >> Git切换分支出现提醒'SSL端口:44301'及解决方案
  详细解决方案

Git切换分支出现提醒'SSL端口:44301'及解决方案

热度:191   发布时间:2016-04-24 02:36:39.0
Git切换分支出现提示'SSL端口:44301'及解决方案

切换分支出现如下提示,并且自动签出了项目文件csproj。

clipboard

修改项目文件csproj

修改前:

<UseIISExpress>true</UseIISExpress>

<IISExpressSSLPort />

<IISExpressAnonymousAuthentication />

<IISExpressWindowsAuthentication />

<IISExpressUseClassicPipelineMode />

修改后:

<UseIISExpress>true</UseIISExpress>

<IISExpressSSLPort>44301</IISExpressSSLPort>

<IISExpressAnonymousAuthentication>enabled</IISExpressAnonymousAuthentication>

<IISExpressWindowsAuthentication>disabled</IISExpressWindowsAuthentication>

<IISExpressUseClassicPipelineMode>false</IISExpressUseClassicPipelineMode>

  相关解决方案