Visual Studio 2008 Build Optimization

In one solution, we have 100 projects, if we build a solution, it has a lot of time to build. I want to know if we have options for increasing the speed of the visual studio assembly process.

The language used to develop C #.

+3
source share
3 answers

We have almost 100 projects in one solution, and the build time is only seconds :)

For local development builds, we created a Visual Studio Addin application that changes Project referencesto DLL referencesand unloads unwanted projects (and the possibility of returning them).

  • Create our entire solution after
  • Unload the projects that we are not working on right now, and change the links to all links to DLL links.
  • DLL .

, . , DLL . 10-30 , , .

+3
0

, , . , , .

  • → → Build
  • "" . ".._ builds\bin\Debug \"
0
source

Source: https://habr.com/ru/post/1775579/


All Articles