Visual Studio 2010 - C++ project - remove *.sdf file

后端 未结 5 652
心在旅途
心在旅途 2020-12-07 06:58

I would like to know if I can safely delete the sdf file that stores information for Visual Studios Intellisense - is it going to be rebuilt the next time that I open the so

5条回答
  •  情书的邮戳
    2020-12-07 07:43

    You can safely delete the .sdf file and ipch folder but you can also stop VS from putting those files in the project folder in the first place. (Useful if you have your source in an SVN or other synchronised folder, or if you store your project on a small volume like a USB stick or SSD and you don't want those large files stored in the same folder)

    Go to Tools -> Options -> Text Editor -> C/C++ -> Advanced

    In the "Fallback Location", set "Always Use Fallback Location" to True and "Do Not Warn If Fallback Location Used" to True.

    In "Fallback Location" you can either put a path like C:\Temp or if you leave it blank then VS will use the temporary directory in your AppData folder.

提交回复
热议问题