Is there anyway to tell Visual Studio not to open all the documents when I load solution?

后端 未结 7 2358
你的背包
你的背包 2021-02-18 16:05

When you open a solution in Visual Studio 2008 (or ealier versions for that matter), it opens all the documents that you did not close before you closed Visual Studio. Is there

7条回答
  •  一整个雨季
    2021-02-18 17:01

    Have you tried deleting the .suo file?

    It's a hidden file that lives beside your solution (sln) file. suo is "solution user options", and contains your last configuration, such as what tabs you left open the last time you worked on the project, so they open again when you reload the project in Visual Studio.

    If you delete it, a new 'blank' suo file will be recreated silently.

提交回复
热议问题