Where is the option to "get everything" when opening a solution in Visual Studio 2015? -


in previous versions of visual studio there option "get when solution or project opened"

in visual studio 2013 first option in source control environment settings: visual studio 2013 source control environment settings

does option exist in visual studio 2015? if not, there way automatically latest version when opening solution?

the feature removed last minute had major negative impact on dynamic solution loading process speeds opening large solutions in visual studio 2015.

quote from product group here:

late in ship cycle, found async project load improvements caused large issue feature. namely, if had feature enabled, see vs deadlock if tried sources while asynchronously loading projects. given feature is, in general, bad practice, , fixing have been significant investment, decided remove it.

if need alternative, it's better create little batch script or powershell script uses tf commandline latest version before opening solution:

tf . /recursive /version:t start solutionfile.sln 

that way solution date before visual studio starts parsing it.

i can imagine few reasons make "bad practice", when working more 1 developer:

  • it require conflict resolution , interfere loading process
  • it have bring in changes others break local workspace

Comments

Popular posts from this blog

yii2 - Yii 2 Running a Cron in the basic template -

asp.net - 'System.Web.HttpContext' does not contain a definition for 'GetOwinContext' Mystery -

wso2esb - How to concatenate JSON array values in WSO2 ESB? -