vote up 6 vote down star

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.

flag

80% accept rate

7 Answers

vote up 4 vote down check

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|flag
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 at 9:55
vote up 4 vote down

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

link|flag
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
3  
As far as I can tell this only works in Visual Basic projects. Not C#. – Lawrence Johnston Sep 29 '08 at 16:19
Sorry, I should've noticed that. Yeah, VB only. I wish they would make stuff equivalent, sheesh. – Nicholas H Jan 18 at 20:21
vote up 4 vote down

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|flag
vote up 2 vote down

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|flag
vote up 1 vote down

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

link|flag
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
vote up 0 vote down

NDepend may help you here:

http://ndepend.com/

link|flag
vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

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