Building from a Solution file
For example, I have a solution with 3 projects, but I set one of the projects not to compile in my Debug configuration. I run the following command:
msbuild "C:\Temp\Solution\Solution.sln" /p:Configuration=Debug
However it builds all 3 projects, whereas if I run the following command:
devenv "C:\Temp\Solution\Solution.sln" /build debug
It only builds the two that I have set to build.
Is there a way to get MSBuild to build using the settings from the solution file?
Thanks,
Matt Garven

