I would like to build all the configurations of the VS 2008 C ++ project on the command line. Sort of:
devenv TheProject.vcproj / build / nologo
But this will not work, because the / build command insists that the following configuration looks like this:
devenv TheProject.vcproj / build "Release | Win32" / nologo
Is there a way to get the assembly on the command line of all the configurations in the vcproj file?
source
share