1 ipch文件夹

用来加速编译,里面存放的是precompiled headers,即预编译好了的头文件。

头文件也是需要编译的,比如需要处理#ifdef,需要替换宏以及需要include其它头文件。

将一些常用的但是不经常修改的头文件编译好放在一个文件中,后面的编译就直接用这个头文件而不用重新编译。

2 sdf文件和opensdf文件

sdf文件是vs用于intellisense的。

https://msdn.microsoft.com/zh-cn/library/hcw1s69b.aspx

2.1 list class members

鼠标放在某个class上,会自动显示这个class有哪些members。

2.2 显示某个函数的完整参数信息,这样方便自己编码

2.3 自动完成单词

3 sln文件

解决方案文件。

4 suo文件

https://shemeerns.com/2014/04/04/the-solution-user-options-suo-file-in-visual-studio/

What is Solution User Options (.suo) file

The solution user options (.suo) file is a structured storage, or compound, file stored in a binary format. This file is used to store user preference settings, and is created automatically when Visual Studio saves a solution.

Location of .suo file

The .suo file will be saved in the folder where your Solution (.sln) file exists. You might wanted to set true for “Show Hidden Files and Folder” in “Folder Options” as .suo file is default by hidden.

What informations are saved in my .suo file

This file is used by Visual Studio to store user/solution specific information such as Opened Files, Expanded Nodes in the Solution Explorer, Opened Tool Windows and its Positions, User Tasks, Breakpoints, Start-up Project, Contents of Watch window, Whether the project is loaded/unloaded  etc. The same file is used by Visual Studio Addins (VSPackages) to persist information that are specific to that solution/user.

.suo file and Source Control

Adding user specific information to source control is not a good idea. Most of the code versioning control ignores .suo file by default. If included, the developer, who checks out the latest .suo file, will loose all his personal settings which is stored in the local .suo file.

Visual Studio performance and .suo file

If the size of .suo file is too large then it can affect the performance of Visual Studio. Deleting the .suo file will boost the performance.

Deleting .suo file

Visual Studio creates a new file with the .suo file extension as soon as you open again the solution. But once the file with the .suo file extension is deleted, any of your existing solution user-specific settings will be lost.

最新文章

  1. Tips
  2. PHP:( && )逻辑与运算符使用说明
  3. css实现分割线
  4. 精通 CSS 选择器(二)
  5. 引用web service时,出现无法识别的配置节点applicationSettings
  6. Git配置安装使用教程操作github上传克隆数据
  7. WHAT?【 $.fn.extend() 】vs【 $.extend() 】
  8. node之路由介绍
  9. vlan内部与外部某终端之间的通信
  10. php Base64编码文件二进制流主要使用
  11. 配置国内PIP源方法
  12. Android为TV端助力 fragment 的用法以及与activity的交互和保存数据的方法,包括屏幕切换(转载)!
  13. Zookeeper学习笔记4
  14. Django form choices, placeholder
  15. 第9月第6天 push pop动画 生成器模式(BUILDER)
  16. Linux操作系统(三)
  17. c++计算器后续(3)
  18. C语言/C++对编程学习的重要性!
  19. 20155308 2016-2017-2 《Java程序设计》实验3
  20. Python 一些 实用的包(持续更新)

热门文章

  1. Nowcoder Girl 参考题解【待写】
  2. weblogic优化参数
  3. POJ 3480 John [博弈之Nim 与 Anti-Nim]
  4. Elasticsearch搜索结果返回不一致问题
  5. 解决php中redis client进行subscribe操作出现timeout的问题
  6. zabbix-agent安装报错
  7. 【转载】C++11的简单学习
  8. z pre-pass 相关问题的讨论
  9. MongoDB下载安装測试及使用
  10. 2016.8.19 将div设置为隐藏使用style=“display:none”