我尝试使用命令行中的MSBuild将我的Web应用程序发布到Azure现有Web应用程序:
.\MSBuild.exe $solutionPath /T:$project /T:Rebuild /p:DeployOnBuild=true /p:WebPublishMethod=MSDeploy /p:PublishProfile=$publishProfilePath /p:password=$password /p:VisualStudioVersion=14.0 /p:AllowUntrustedCertificate=true
我收到以下错误:
msdeploy error ERROR_COULD_NOT_CONNECT_TO_REMOTESVC: Web deployment task fail
ed. (Could not connect to the remote computer ("appName.scm.azurewebsites.net") using the specified process ("Web Management Service") because the server did not respond.
但是,当我从Visual Studio 15部署具有相同发布配置文件的相同应用程序时,它可以正常工作。你知道出了什么问题吗?
由于
答案 0 :(得分:2)
好的,问题在于我们的IT使用代理服务器。 解决方案是添加
<system.net>
<defaultProxy useDefaultCredentials="true" />
</system.net>
到&#34; MSBuild.exe.config&#34;文件