vote up 1 vote down star

Is this valid?

MSBuild /t=all /configuration=all

I want to build ALL configurations of all projects in a sln file, etc from the command line using MSBuild in Visual Studio 2008.

I do not want to have to specify them when I call MSBuild, the sln/proj files all have that information. I don't want to change my build script if I add configurations to project files.

So for the target I can use BuildAll. If I leave the configuration empty will it build all or is "BuildALL" valid for configuration as well?

EDIT

essentially what I am asking is given an SLN or VCProj file, I want msbuild to iterate all configurations and build it itself, or alternatively some mechanism that will discover them so I don't have to specifically list them on the command line or in a script.

i.e. I don't want to update my build script when I add or remove a configuration. That seems like a pretty reasonable thing to want to do.

flag

56% accept rate
Understand about not wanting to have to update the build script every time you add a configuration, but realistically; how many times do you do that? I'd just write a target that calls all of the targets you need. – John Weldon May 9 at 5:14
The other issue is I want to just use the same command/batch file and give it all of the sln files I have. I want to use the same batch file for all of them. I am lazy - I don't want to have to type all those out. – tim May 9 at 5:54

1 Answer

vote up 3 vote down

The way I do it is:

msbuild /t=BuildAll /Configuration="Debug;Release;ContinuousIntegration"

If I were lazy, I'd make a standard Target, and call it BuildAll, and for every project I wanted to automate, I'd just create that Target and make it depend on all the targets you want to build automatically.

link|flag
Thanks. I have other configurations - e.g. static lib vs dynamic, etc. – tim May 9 at 5:08

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.