I have two solutions with multiple projects each. The two solutions utilize circular dependency to get a full build of the application.
Basically
1. Build two projects from solution 1.
2. Build three projects from solution 2.
3. Build all solution 1.
4. Build all solution 2.
Which is fine, once built it runs great, the problem is if it is updated at all by another developer I have to get latest, then go through the whole process again....and again....and again.
After some research I found this question/answer which showed how to build all solutions in a directory using a batch file. My question would take this a step further, is it possible to build specific projects from multiple solutions, alternating between solutions as the build progresses using a batch file?
Thanks.