I prepare a project in which there are more than 15 projects and each have ten to twelve user controls. I need to build project in order to run but it takes a lot of time to build the projects. Anyone knows how to increase the speed of a build in visual studio 2010?
Share
One possibility is to use build with multiple processes, just add /MP command to the compiler’s command line, it dramatically speeds up the compiling process on multi-core CPUs. However, it works only in release configurations.
http://msdn.microsoft.com/en-us/library/bb385193.aspx