Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do you call multiple MSBuild scripts from one MSBuild script

I have 3 MSBUild scripts for deployment, 1 for deploying UI 1 for deploying a couple of web services. 1 for deploying backend services.

Now I would like to create a one click deployment MSBuild script, which would call all the above 3 scripts, which can be executed from a TeamCity server.

So how can I call these three MSBuild scripts from a different MSBuild Script.

like image 421
Pradeep Avatar asked Jul 31 '09 15:07

Pradeep


1 Answers

There is a MSBuild MSBuild task.

like image 57
OregonGhost Avatar answered Oct 18 '22 02:10

OregonGhost