目前,我正在使用 MsBuild 和 MsDeploy 使用以下命令更新 1 台服务器。
/p:Configuration=Release /P:DeployOnBuild=True /P:DeployTarget=MSDeployPublish
/P:MsDeployServiceUrl=https://%system.server%:8172/MsDeploy.axd
/P:AllowUntrustedCertificate=True /P:MSDeployPublishMethod=WMSvc
/P:CreatePackageOnPublish=True /P:UserName=%system.user% /P:Password=%system.pass%
/P:DeployIisAppPath="PATH TO SERVER"
无论如何我可以使用相同的编译可执行文件更新另外 2 台服务器,而无需再次运行 msbuild?我还使用 Teamcity 将其作为构建步骤运行。
干杯