views:

65

answers:

3

I often use the string search feature for an entire solution in VS2008. Is there a way to improve its search speed by getting VS2008 to index all the source code and config files, similar to how Google Desktop index files?

+2  A: 

Though I don't think it is possible to do within visual studio you may want to use WinGrep, or another grep tool to do this sort of search instead.

Matthew Vines
A: 

This is not a supported feature of Visual Studio. The find in files feature simply goes through the files searching for the specified text and does not take advantage of any indexing.

It is possible to search using other 3rd party components using and indexed database though.

JaredPar
A: 

I like searching using a tool called WildReplace .

djangofan