I'm working on a batch script that will build projects made with Visual Studio 2010. I need it to build four variations of the same project: 32-bit Debug, 32-bit Release, 64-bit Debug, and 64-bit Release.
So far, I think I've figured out how to build the project with it's last saved settings:
"%MSBUILD_DIR%\MSBuild.exe" !PROJECTNAME!.vcxproj /t:Build^
How can I modify this, so that it will build the four different configurations that I need?