是否可以从 Visual Studio Online 使用 Web Deploy?

Is it possible to use Web Deploy from Visual Studio Online?

我想在 Visual Studio 在线构建,然后网络发布到亚马逊。

这可能吗?还是只发布到 Azure?

它发布到任何你喜欢的地方。

使用 PowerShell、Batch 或 ShellScript 任务以您想要的任何方式部署到您喜欢的任何系统。

更好的是,创建具有发布管理的专业发布管道并部署到许多环境。

我 运行 添加了以下参数的 MSBuild...

/P:DeployOnBuild=True
/P:DeployTarget=MSDeployPublish
/P:DeployIISAppPath=MyWebsite
/P:AllowUntrustedCertificate=True
/P:MSDeployPublishMethod=WMSvc
/P:CreatePackageOnPublish=True
/P:MsDeployServiceUrl=https://DOMAIN/MsDeploy.axd
/P:UserName=User1
/P:Password=******