How do you call multiple MSBuild scripts from one MSBuild script

deployment, msbuild, teamcity

Solution

There is a `MSBuild` MSBuild task.

Problem

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.

Original source