Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

Visual Studio Solution Load Manager

0.00/5 (No votes)
23 May 2013 1  
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 has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here