vote up 2 vote down star

Are there any utilities that can examine a set of managed assemblies and tell you whether any of the types in one namespace depend on any in another? For example, say I have a MyApp.BusinessRules namespace and don't want it to access directly anything in MyApp.GUI, but both namespaces are in the same assembly. My goal is to be able to write a custom MSBuild task that verifies that various coupling rules have not been broken.

So far the only tool I have come across that looks like it might do this is NDepend, but I am wondering if there is a simpler solution.

flag

77% accept rate

4 Answers

vote up 2 vote down

I suspect NDepend is going to be the simplest way to go, to be honest.

However, if you really don't want bits of one assembly from referring to each other, you should almost certainly split the assembly up into more logical units.

link|flag
yes, I would like to break the assemblies up, but Visual Studio performs really bad when you start to have more than 40 or so projects in your solution (especially when your dev machine is 5 years old) – Mark Heath Nov 20 '08 at 11:09
You should be able to make the case for an update to your dev machine then... and think about whether you need all those projects in the same solution. It sounds like you've got 1 project here which should be two - do you have others which should be combined? – Jon Skeet Nov 20 '08 at 11:12
well its one big WinForms executable that hosts 8 or 9 sub-"applications", so once you have factored out the shared code into reusable components and added some unit test assemblies, the number of projects gets quite high. – Mark Heath Nov 20 '08 at 11:44
I suspect I'd refactor that into multiple solutions - one for each subapplication, the "shell", and a "common code" solution. I know it's a pain to do references to files rather than projects, but it does keep things nippier. – Jon Skeet Nov 20 '08 at 12:03
yes, this is exactly what I would like us to do. – Mark Heath Nov 20 '08 at 13:40
vote up 2 vote down

So far the only tool I have come across that looks like it might do this is NDepend, but I am wondering if there is a simpler solution.

I am the lead developer of NDepend. Please could you let us know what do you find complicated in NDepend and how you imagine a simpler solution for you?

NDepend comes with 3 different ways to do what you want: Dependencies Matrix, Graph and also you can write some CQL queries and rules to detect cycle between namespaces, or enforce some particular dependencies.

Btw, I wrote an article about why prefering few big assemblies with many namespaces over having plenty of small assemblies: Control components dependencies to gain clear architecture

link|flag
We downloaded NDepend a while ago to evaluate it. There is a lot to learn and I am still getting to grips with the meaning of the matrix. I would be interested to see if I could write CQL to query specific dependencies between namespaces. – Mark Heath Nov 21 '08 at 9:44
Mark, for example : // Make sure no dependencies cycles between namespaces WARN IF Count > 0 IN SELECT ASSEMBLIES WHERE ContainsNamespaceDependencyCycle // Avoid App.UI.* to use App.DB WARN IF Count > 0 IN SELECT NAMESPACES WHERE IsDirectlyUsing "App.DB" AND NameLike "App.UI" – Patrick Smacchia Nov 21 '08 at 16:01
vote up 2 vote down

You can analyze namespace dependencies with the DSM plugin for .NET Reflector ( I'm its developer)

Once the assemblies are analyzed you can save the project to a file. This file is just XML with a simple structure so you can pass it to a script for custom analysis

link|flag
This plugin is great, I've just been using it to analyse and refactor a largish project and it provides exactly the information you need. Thanks! – Dave Aug 6 at 1:02
vote up 0 vote down

Reflector does this.

Right click namespace, click Analyze, viola! :)

link|flag
a useful tip but it seems to only show what assemblies my namespace depends on, not what namespaces – Mark Heath Nov 20 '08 at 11:13

Your Answer

Get an OpenID
or

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