Skip document loading when starting Visual Studio

When Visual Studio 2010 starts, it sometimes freezes when loading documents that were opened earlier when I opened the last solution. I have to end the process in the task manager and reopen it. When I open it again, it skips loading the document and says this in the Output window:

An error occurred while opening related documents. time when this solution was downloaded. Downloading a document during this load solution to avoid this error.

My question is, is there an argument (or parameter) that I can use when opening Visual Studio, which will skip loading the document? This way I do not have to open VS and wait until it freezes before killing it and reopening it.

+4
source share
1 answer
Tools -> Options -> Environment -> Startup 

And select the start page instead of opening the last solution.

To prevent files from opening when the solution loads (maybe this is what you are asking about), simply delete the .user file in the .user directory - this will reset the local parameter whose files are open when the solution loads.

+1
source

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


All Articles