I have the application (solution in VS2010) with +-10 projects. Some of these projects are quite large (dozens of folders and hundreds of files).
When I make a change in project on lower level and I want to run my tests (+-10 seconds) then I have to wait 2 minutes for projects build.
This is very inefficient.
Is there any way to speed-up build? For example, split current projects into multiple projects or something else?
Or are there some general advice and recommendations to speed-up building projects in Visual Studio?
In my experience solutions with large number of projects build slowly on vs2010 and there is not much you can do about it:
Bin\Debug Bin\Releasefolder so that new dlls are loaded on application start. This is requited because if you don’t build project its dependencies wont be copied to its output directory.