Is there a way to specify which projects in a Visual Studio Project File (.sln) are built? I want to build only certain projects based on an input to a script, but I don't want to run multiple seperate builds from different .slns, I want to have it contained in a single /build command.
Ie. if I have
Project
...a
...
EndProject
Project
...b
...
EndProject
Project
...c
...
EndProject
..
..
Is there a way to only have a subset of projects a,b,c be built depending on the /build command I use?