Ian Warburton
Ian Warburton

Reputation: 15696

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

I would like to build in Visual Studio Online and then Web Publish to Amazon.

Is this possible? Or does it only publish to Azure?

Upvotes: 1

Views: 100

Answers (2)

Ian Warburton
Ian Warburton

Reputation: 15696

I ran MSBuild with the following parameters added...

/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=******

Upvotes: 1

It publishes to wherever you like.

Use the PowerShell, Batch, or ShellScript task to deploy to whatever system you like in whatever way that you want.

Better yet, create a professional release pipeline with release management and deploy to many environments.

Upvotes: 2

Related Questions