What is the purpose of Browse Information generated by Visual Studio

前端 未结 2 1450
感情败类
感情败类 2021-01-11 17:06

I got a huge C++ third-party project with set of project in one solution. So build time is rather long and Browse Information generation takes a lot too. So what is the pur

2条回答
  •  长情又很酷
    2021-01-11 17:42

    Visual Studio 6 required browse information to do the things that Doug T. mentioned.

    Newer versions of visual studio can use the browse information file, but by default use a newer Intellisense database. For those versions, there is basically an Intellisense daemon that builds the database in the background instead of being directly embedded in the build process. It really helps to have more than one processor or core when using Intellisense. Otherwise it can really bog down your system.

提交回复
热议问题