現在、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"
とにかく、msbuildを再度実行せずに、同じコンパイル済み実行可能ファイルで別の2つのサーバーを更新できますか? また、これをビルドステップとして実行するために Teamcity を使用しています。
乾杯