你的位置:首页 > 软件开发 > ASP.net > Git切换分支出现提示'SSL端口:44301'及解决方案

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

发布时间:2016-01-14 19:00:30
切换分支出现如下提示,并且自动签出了项目文件csproj。 修改项目文件csproj 修改前: <UseIISExpress>true</UseIISExpress> <IISExpressSSLPort /> <IISExpressA ...

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

Git切换分支出现提示

修改项目文件csproj

修改前:

<Useget='_blank'>IISExpress>true</UseIISExpress>

<IISExpressSSLPort />

<IISExpressAnonymousAuthentication />

<IISExpressWindowsAuthentication />

<IISExpressUseClassicPipelineMode />

修改后:

<UseIISExpress>true</UseIISExpress>

<IISExpressSSLPort>44301</IISExpressSSLPort>

<IISExpressAnonymousAuthentication>enabled</IISExpressAnonymousAuthentication>

<IISExpressWindowsAuthentication>disabled</IISExpressWindowsAuthentication>

<IISExpressUseClassicPipelineMode>false</IISExpressUseClassicPipelineMode>


原标题:Git切换分支出现提示'SSL端口:44301'及解决方案

关键词:Git

Git
*特别声明:以上内容来自于网络收集,著作权属原作者所有,如有侵权,请联系我们: admin#shaoqun.com (#换成@)。