Is there any possibiliy to searh the whole solution to see a particular refrence's usage?

Let's say, can I see in what projects the reference "Xyxyxyxy.dll" is referenced?

(ReSharper based answers are also acceptable! :) )

Thanks!

link|improve this question

68% accept rate
feedback

2 Answers

up vote 1 down vote accepted

You can do this through notepad++ quite easily by giving the solution directory and *.csproj as the filter i.e. searching the csproj files for the references.

  • In case you want to search for GAC assembly references, search for the following string

    <Reference Include="System.Data" /> where System.Data is the assembly name

  • In case you want to search for a non GAC referenced assembly then search for the following string

    <Reference Include="WindowsFormsApplication2, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">

    Search in notepad++

link|improve this answer
Using Resharper's functionality as described by @Ilya Ryzhenkov's answer is far easier and helpful. Your method would be ok if you weren't using Resharper, but if you're not then why not? – Piers Myers Sep 14 '11 at 16:31
The question requires to search the entire solution and not a single project. Such a feature is not available in ReSharper. – Devendra D. Chavan Sep 15 '11 at 3:03
the 'Project Hierarchy' feature in Resharper shows all the Projects in your entire Solution that have the same reference as you selected. The 'Find Code Dependant on Module' feature will only work on one Project at a time. – Piers Myers Sep 15 '11 at 8:48
feedback

You can use Project Hierarchy feature of ReSharper to see back and forward reference links. Right click your reference or project, choose Project Hierarchy.

link|improve this answer
Very nice feature that I'd not used before. You can then use 'Find Code Dependant on Module' to see if is actually used at all. – Piers Myers Sep 14 '11 at 16:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.