maka
maka

Reputation: 566

Distributed compiling for C#/VB.NET in Visual Studio

I'm looking for a way to compile our application a bit faster, and there is a lot of dead time now. Doing a little research I've found out about IncrediBuild, but the way I understand it, it only speeds up building for C++.

Is there a way to speed up a Visual Studio 2010 solution of multiple VB.NET/C# projects?

Upvotes: 0

Views: 1238

Answers (1)

Jakub Konecki
Jakub Konecki

Reputation: 46008

Try using MSBuild /m (for multi-threaded compilation)

More information here:

Building Multiple Projects in Parallel with MSBuild

Hack: Parallel MSBuilds from within the Visual Studio IDE

Upvotes: 1

Related Questions