I haven't done much with defining an MSBUILD configuration file but I have done builds of different configurations using a batch file like this
msbuild /v:n /p:Configuration=Release "Capture.sln"
msbuild /v:n /p:Configuration=ReleaseNoUploads "Capture.sln"
I defined the ReleaseNoUploads configuration inside Visual Studio.I'll see if
Here's what I can find the steps had to do for doing itthat (this is Visual Studio 2005):
- Open the Tools:Options menu, go to the Projects and Solutions:General option, and check Show advanced build configurations.
- From there, go to the Build:Configuration Manager menu
- In the dialog that pops up, click on the Active solution configuration pulldown and click <New...> to create a new build configuration.
