Myles McDonnell
Myles McDonnell

Reputation: 13335

Parallel visual studio solution build

I know that msbuild is capable of using multiple cores (see here). But VS2010 'integration' is a bit of a hack and the build output is 'munged' together from each project making it very difficult to read.

The solution I am currently working on builds at least 50% faster when done in parallel vs. sequentially (on an 8 core workstation), due to a number of idiosyncrasies with this particular code base.

Is anyone aware of an alternative build tool for executing a solution build over multiple cores, something with a nice UI perhaps?

Upvotes: 5

Views: 3007

Answers (1)

Jason
Jason

Reputation: 3960

Tools -> Options -> Projects and Solutions -> Build and Run -> maximum number of parallel project builds

Upvotes: 7

Related Questions