vote up 1 vote down star

What is the difference between Build Solution and Batch Build in Visual Studio 2008?

flag

48% accept rate

4 Answers

vote up 5 vote down check

The key point which seems to be missed in both the existing answers is that batch build allows you to build multiple configurations of each project. (e.g. you can build debug AND release configurations with a single operation)

With a normal build, you have to use the configuration manager to select just one configuration for each project.

link|flag
also, if you have builds for different languages/conditions, batch build lets you build all of them at once. – djeidot Jun 18 at 14:49
vote up 0 vote down

Another nice thing about batch build is that it lets you build a configuration different than the current one. Handy for solutions that take a while to switch.

link|flag
vote up 0 vote down

Batch build allows you to build any project that you select, a Solution build only builds the projects that are part of the active solution.

You can customise what projects are part of a solution build by going to tools->configuration manager

link|flag
vote up 0 vote down

Building the solution is the same as batch building all projects. Both methods respect the solution's dependencies.

link|flag

Your Answer

Get an OpenID
or

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