vote up 0 vote down star

I have a requirement to document the assembly dependencies in a vb6/dotnet application.

What techniques / tools are good for performing this sort of document.

I was planning on using Visio for drawing.

flag

4 Answers

vote up 4 vote down check

As a start, try Dependency Visualizer. I've also used GraphViz's Dot and some custom code for simple dependency generation. The custom code invoked SysInternal's depends.exe recursively and parsed the output. .NET Reflector with the Graph plugin looks pretty promising, too, though I haven't tried that (yet).

What I've always run into was the fact that my graph, unless generated automatically, has to be recreated every time I add to the project and sometimes when I simply change something. So, for me, a manual solution that I became married to for the updates was no solution at all.

I just found the Dependency Structure Matrix Plug-in for .NET Reflector.

link|flag
depends.exe is from dependencywalker.com not sysinternals... – John Weldon Jun 17 at 2:30
+1 for a good answer though. I wish people would explain downvotes on answers that aren't self-evidently bad. – John Weldon Jun 17 at 2:31
maybe we can each say we're half right and split the difference? ;v) I was talking about this one: support.microsoft.com/kb/301423, so it is at least in the Windows 2000 Support Tools pack. As a .NET developer (for an electric company) I picked mine up somewhere from MS. – james Jun 17 at 3:40
vote up 1 vote down

Well for .NET you could also try VS2010 Beta 1 and the Architecture Explorer (Arch Explorer screen shots).

As for VB6, I'd like to have a tool for that also. This tool from Microsoft Visual Basic 6.0 to Visual Basic .NET Upgrade Assessment Tool creates a call graph in HTML for a single VBP, not sure how useful it would for you. Other than that I have not found may tools for VB6.

link|flag
vote up 0 vote down

Dependency visualizer is good for small projects. For projects or solutions with many inter dependencies it becomes too clumsy to even trace the dependency graph.

link|flag
vote up 0 vote down

Have you had a look at NDepend?

link|flag

Your Answer

Get an OpenID
or

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