Visual Studio 的 NCB 文件位于哪里?
我怀疑我的 Visual Studio Intellisense 已停止工作。我读到这可能是 NCB 文件损坏并需要删除的原因。我在整个计算机中搜索了 NCB 文件,但没有弹出搜索结果。我可以在哪里手动找到该文件?
I have a suspicion that my Visual Studio Intellisense has stopped working. I have read that this may be the cause of the NCB file being corrupted and needs to be deleted. I have searched for the NCB file throughout my computer but no search results have popped up. Where can I manually locate this file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果有:它应该与您的解决方案 (.sln) 文件位于同一目录中,并具有相同的基本名称。
如果您的解决方案是
C:\projects\acme.sln
,那么它应该是C:\projects\acme.ncb
。但是:从 Visual Studio 2010 开始,它不再使用 .ncb 系统。相反,它会创建一个扩展名为 .sdf 的文件。
所以您可能应该寻找
C:\projects\acme.sdf
。请参阅 VC++ 2010 中的 IntelliSense/浏览选项 了解更多信息。
If you have one: it should be in the same directory as your solution (.sln) file, with the same basename.
If your solution is
C:\projects\acme.sln
then it should beC:\projects\acme.ncb
.But: Starting with Visual Studio 2010, it no longer uses the .ncb system. Instead, it creates a file with a .sdf extension.
So you should probably be looking for
C:\projects\acme.sdf
.See IntelliSense/Browsing options in VC++ 2010 for more information.