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?
相关问题
- How to know full paths to DLL's from .csproj f
- Importing NuGet references through a local project
- the application was unable to start correctly 0xc0
- Visual Studio 2019 - error MSB8020: The build tool
- 'System.Threading.ThreadAbortException' in
相关文章
- How to show location of errors, references to memb
- How to add external file to application files ( cl
- How to track MongoDB requests from a console appli
- Use savefig in Python with string and iterative in
- Visual Studio Hangs on Loading UI Library
- How to use Mercurial from Visual Studio 2010?
- Accessing an array element when returning from a f
- Copy different file to output directory for releas
This adds instant full text search of all files in a VS solution.
Not free but cheap and is well worth the money. 30 day trial.
http://entrian.com/source-search/
Remap Ctrl+Shift+F to Entrian's Activate and you get what VS's Find in Files always should have been.
I'm using it in VS 2010, it says it works with 2005 and 2008 as well.
(I have no affiliation with the company).
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.
I like searching using a tool called WildReplace .
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.