Are there any good tools or tricks for determining if there are any referenced but unused dependencies (such as dlls) in a project?

My specific case is C# .net3.5.

link|improve this question

feedback

13 Answers

up vote 24 down vote accepted

I would recommend ReSharper from JetBrains. It will first help you to see what using statements are not necessary in your code and you can also find out what references are not used in your project (Find Usage and if the result is none, then you know the reference is not necessary). I have to admit that this part is manual, but of the other code cleaning actions can be automated using code formatting.

link|improve this answer
3  
ReSharper works great for this! Just watch out for extension methods which require System.Core.dll. ReSharper (at the moment) doesn't recognize this, so (unless something else references it) it tells you that you can remove it. But if you do, and you have some extension methods around, it won't build. – Svish Apr 20 '09 at 9:55
1  
True, ReSharper finds code dependent on a referenced assembly, and if there's no such code, you're free to delete the reference altogether. However, you can vote for a feature request at youtrack.jetbrains.net/issue/RSRP-6312 to streamline this kind of inspection and make it more automated. – gorohoroh Oct 24 '10 at 8:58
1  
Is there a way to automate it throught macros to process a solution or a project? – SoMoS Dec 29 '10 at 16:20
I used this method. However, Svish, is right. Some references are shown as unused even though they are in use. In my case it was Microsoft.CSharp. So what I did was, 1) rightclick to see if the assembly was in use 2) remove it 3) compile 4) add it again if the compile failed 5) move on to the next reference. – huttelihut Jul 1 '11 at 11:14
@gorohoroh youtrack.jetbrains.net/issue/RSRP-6312 is fixed in the 6.1 EAP! blogs.jetbrains.com/dotnet/2011/11/… – Lawrence Johnston Nov 15 '11 at 21:05
show 2 more comments
feedback

It's lame that VS doesn't support this for C#, and that seems to be the case in 2010 too. Would have voted up jbe's suggestion, but the link is broken. Also, I dislike ReSharper so that isn't an option for me.

Anyway, my method has been to:

  • open the DLL in question inside Reflector
  • expand the references node
  • remove any references present in VS that aren't present in Reflector

This works because a reference in VS is just a hint to the compiler that you might need that DLL. If you don't actually use any types in the referenced assembly, the compiler won't include the reference in the assembly's metadata. Thus, Reflector will report on those assemblies that you actually refer to in IL.

Of course, you might be reflectively using assemblies, or you might have added the reference in VS just to get the DLL copied to the same directory as the referencing assembly. Or you may have added the reference because the compiler told you it needed it because you use a dependent assembly. Keep these issues in mind, don't blindly delete references, and be sure to regularly rebuild each project as you go.

link|improve this answer
2  
+1: This worked pretty good for me. Wasn't too painful either, even on a fairly large solution (18 projects). However, Reflector never seemed to reference System.XML, even though the project actually needed it. – JohnB Nov 16 '10 at 19:53
2  
Worked perfectly, thanks for the help! – Rob Rodi Dec 19 '11 at 21:45
feedback

try this: Remove Unused References

link|improve this answer
1  
This is really nice! Great job. The tool needs just a little bit more work though (I've commented on the Visual Studio gallery page). – Kirill Osenkov Jun 17 '11 at 3:19
This is the best free tool I found for this job. Sadly it fails to watch out for references that provide interfaces that are not used directly, but are required still. – mafutrct Apr 26 at 10:13
feedback

Removing unused references is a feature Visual Studio 2008 already supports. Unfortunately, only for VB .NET projects.

I have opened a suggestion on Microsoft Connect to get this feature for C# projects too:

http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=510326

If you like this feature as well then you might vote my suggestion.

link|improve this answer
2  
MS closed that suggestion like the b*tches they are. I have opened a new suggestion: connect.microsoft.com/VisualStudio/feedback/details/640440/… – Ian Kemp Jan 31 '11 at 11:14
feedback

ReSharper helped! Context menu of the reference -> "Find dependent Code". The nice thing is that Resharper also shows you the places where you use the specific reference (in a nice treeview). Anyways, it would be nice to have a cleanup function as there is for VB users built in visual studio.

link|improve this answer
feedback

Isn't this functionality built right into Visual Studio? Project Properties -> References -> Find Unused?

EDIT: As per the comments, this is VB only.

link|improve this answer
I think that only works with VS2005 and above. (But that's certainly the case if you're using .Net 3.5) – Tadmas Sep 27 '08 at 1:07
21  
As far as I can tell this only works in Visual Basic projects. Not C#. – Lawrence Johnston Sep 29 '08 at 16:19
5  
Sorry, I should've noticed that. Yeah, VB only. I wish they would make stuff equivalent, sheesh. – Nicholas Jan 18 '09 at 20:21
feedback

Yes you can use NDepend for this because the tool comes with the Afferent Coupling metric for Assemblies, Namespaces, Types, Methods and Fields. For example, the Afferent Coupling for a particular method is the number of methods that depends directly on it.

Thus code elements with Afferent Coupling set to 0 are likely not used. I say likely because it is mathematically not possible to statically know which code element is used or not at runtime. But you can use the flexibility of Code Query Language like for example asking for method with no Afferent Coupling and that are not the Main() method (Entry Point), a static ctor or a finalizer.

// <Name>Potentially unused methods</Name>
WARN IF Count > 0 IN SELECT METHODS WHERE
  MethodCa == 0 AND            // Afferent Coupling is 0
  !IsEntryPoint AND            // Main() method is not used by-design.
  !IsClassConstructor AND      // The IL code never explicitely calls class constructors.<br>
  !IsFinalizer                 // The IL code never explicitely calls finalizers.
link|improve this answer
I love NDepend and, yes, it is the right tool for the job. However, I think that the question was how you would go about identifying individual references that can be deleted. Merely looking at afferent coupling metric of assembly C will not show that B has a redundant reference to C as long as D is using C. Or did I misunderstand either of you? – Tormod Oct 8 '10 at 7:20
feedback

Take a look at Reference Assistant VS2010 extension by Lardite group. It is completely free but it still works very well!

link|improve this answer
feedback

I wrote an extensions that do this

http://visualstudiogallery.msdn.microsoft.com/36a6eb45-a7b1-47c3-9e85-09f0aef6e879

It's free and fast

link|improve this answer
Have not tried it yet but it looks promising. – Lawrence Johnston Jul 29 '11 at 18:58
feedback

Well a duct-tape solution would be to remove the reference and attempt to compile.

link|improve this answer
That was always my plan of attack too, but in some case the project size/build time gets too extreme for this method. – Timothy Carter Sep 27 '08 at 0:44
feedback

NDepend may help you here:

http://ndepend.com/

link|improve this answer
In NDepend, you can drag an assembly in the left side of the "Code to Analyze" window. The right window will show which assemblies it uses. You still have to manually sync them with Visual Studio. – Jowen Dec 16 '10 at 13:21
feedback

Code Without Borders has a tool for Visual Studio 2010 (available via the extensions manager) called "Remove Unused References"

http://visualstudiogallery.msdn.microsoft.com/9811e528-cfa8-4fe7-9dd1-4021978b5097

I just downloaded it and tried it on a few simple projects and it worked well enough. If you have ReSharper and it removes too much, it's easy enough to get them back. :)

link|improve this answer
Have not tried it yet but it looks promising. – Lawrence Johnston Jul 29 '11 at 18:57
feedback

Check out the Productivity Power-tool Plugin

Removing unused references from project is one of the many helpful features it has. It is free and it has some of the R# features.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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