Reputation: 35631
I'm working on a HUGE solution (> 300 projects) in Visual Studio 2013.
What's the fastest way to navigate to a project given its name (or part of it)?
Currently I use the 'Collapse All' button in the solution explorer and scroll, scroll, scroll.
FWIW I use Resharper (v8).
Upvotes: 0
Views: 66
Reputation: 7282
With ReSharper 8, you can also use Ctrl+N (Go to Everything/Type..).
The functionality has been extended greatly from earlier versions,so that it shows much more than just the names of classes.
It now will also show matching Project names, JavaScript, SQL objects(e.g. stored procs).
Upvotes: 0
Reputation: 23747
Use Ctrl+Shift+T (Go to file/folder), and then just start typing the project name. Once you've found your match, hit enter and it will be focused in the Solution Explorer.
I'm using Resharper 7, but I think this would work the same in 8.
Upvotes: 3