Visual Studio - Deleting .vs folder

后端 未结 5 1787
遇见更好的自我
遇见更好的自我 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:20

    Chiming in with my own experience.

    If you are working on something that is very much location dependent (for example, OpenGL which has lot of hard coded linking and library including), then, the answer is.

    No. You should not delete.

    If it is not like the OpenGL situation, then,

    Yes, you can delete it. visual studio will simply recreate that folder for you.

    also, if I remember correctly, .vs is part of the standard .gitignore file for visual studio projects. that also hints that you can happily delete things (except for stuff like OpenGL)

提交回复
热议问题