Reputation: 566
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
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