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.
|
|
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.
|
||
|
|
|
|
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. |
||
|
|
|
Isn't this functionality built right into Visual Studio? Project Properties -> References -> Find Unused? |
||||||||
|
|
|
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. |
||
|
|
|
|
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.
|
||
|
|
|
|
Well a duct-tape solution would be to remove the reference and attempt to compile. |
||
|
|
|
NDepend may help you here: |
||
|
|
|
|
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. |
||
|
|