Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why does the Visual Studio conversion wizard 2010 create a massive SDF database file?

I've opened a 2009 C++ sln in 2010 and run the Visual Studio 2010 conversion wizard. It seems to have done the conversion fine, but there's a 60 MB .sdf file created with the same name as my .sln file (apart from extension)! There was no sdf file before. I'm pretty sure when I've used the wizard on C# projects this file hasn't been created.

It looks like it's created to help the conversion wizard, but I don't see why it's left when the wizard has finished. The tables in the database are:

assoc_spans
assoc_text
base_class_parents
code_item_kinds
code_items
config_files
configs
file_map
file_signatures
files
parsers
projects
properties
refs
symbols

I assume I can just delete this file?

like image 824
Rory Avatar asked Nov 21 '10 11:11

Rory


1 Answers

It is the code browser database, it replaces the NCB file in earlier releases. In VC++ 2010 the intellisense and browsing features have been completely redesigned to provide greater functionality and accuracy.

like image 68
Clifford Avatar answered Oct 27 '22 01:10

Clifford