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.
|
|
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.
|
||
|
|
|
|
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. |
||||||
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
Have you had a look at NDepend? |
||
|
|