The system i'm building has 4 separate applications that in production, are 4 distinct win32 services. During development I run them as 4 separate console applications. These programs need to be started in a specific order.
I do this from VS2010 by right clicking on each project and select debug > start a new instance. This works but is painfully slow.
I attempted to use run "Multiple startup projects", but they all start at the same time. Changing the start order does not help.
So, what i want to do is to use MSBuild to start each program from a build script. I attempted to use the Exec Task but the programs are not launched as debugged processes..
Since all of VS is based on msbuild, i know there must be a way to launch a project this way..