0

All,

I new to TeamCity and I'm have a configured teamcity for my .net 4.5 solution and it builds fine.

However, my solution contains 3 projects. One of the projects is a web service and a web appication.

Please how do I configure Teamcity(MSBUILD) to deploy the webserivce project to a different server and the web web application project to a different server.

That is, after the successful server build, team city deploys the web application in the solution to Server A, while the web service is deployed to Server B.

capiono
  • 2,875
  • 10
  • 40
  • 76

1 Answers1

1

You can perform the WebDeploy operation via an MSBuild build step. You will need a separate build step for each project. Then specify the WebDeploy server target in your command line parameters with the MsDeployServiceUrl property.

Community
  • 1
  • 1
John Hoerr
  • 7,955
  • 2
  • 30
  • 40