Click here to Skip to main content
15,885,638 members
Articles / General Programming / Optimization
Tip/Trick

Visual Studio Solution Load Manager

Rate me:
Please Sign up or sign in to vote.
5.00/5 (2 votes)
23 May 2013GPL31 min read 11K   3  
Visual Studio extension to change Visual Studio "hidden" option for project loading to reduce loading time for big solutions.

Introduction 

Visual Studio extension to change Visual Studio "hidden" option for project loading to reduce loading time for big solutions.

Visual Studio solutions can contain a large number of projects. The default Visual Studio behavior is to load all the projects in a solution at the time the solution is opened, and not to allow the user to access any of the projects until all of them have finished loading. When the process of project loading will last more than two minutes, a progress bar is displayed showing the number of projects loaded and the total number of projects. The user can unload projects while working in a solution with multiple projects, but this procedure has some disadvantages: the unloaded projects are not built as part of a Rebuild Solution command, and IntelliSense descriptions of types and members of closed projects are not displayed.

Developers can reduce solution load times and manage project loading behavior by creating a solution load manager. The solution load manager can set different project loading priorities for specific projects or project types.

More information can be found at: 

To change Visual Studio default project priority go to

  • Tools -> Options -> Solution Load Manager 

http://msdn.microsoft.com/en-us/library/ee462384(v=vs.110).aspx

To change Visual Studio default project priority, go to: 

  • Tools -> Options -> Solution Load Manager

 

The most optimal option for big solutions is PLP_LoadIfNeeded. 

Download extensions from Visual Studio Gallery: 

VS2012 version: 

VS2010 version: 

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPLv3)


Written By
Software Developer
Ireland Ireland
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
-- There are no messages in this forum --