Visual Studio - Deleting .vs folder

后端 未结 5 1790
遇见更好的自我
遇见更好的自我 2021-02-18 23:42

I have a 3gb .vs folder in my C++ project.

I am wondering if it is safe to delete the .vs folder.

If not what can i do to decrease the volume.

Thanks in

5条回答
  •  无人及你
    2021-02-19 00:44

    The .vs folder is generated by Visual Studio and is readily re-created. Sometimes removing .vs is necessary to get a project building again, for example after a Visual Studio update, or opening the solution from a portable drive on a different computer.

    However, be aware that you will lose some user state related to the solution:

    • Selected build configuration
    • Local debug settings, like startup project(s)

    You will NOT lose:

    • Solution/project structure
    • Build configuration definitions
    • Project dependencies
    • Third-party extension settings etc.

提交回复
热议问题