vote up 7 vote down star
2

I have an Asp.Net 2.0 (VB.Net) app and I'm trying to export a Control (ASCX) to another project. I need to know what other files that the Control needs in order to work.

Is there any way - using VS.Net 2005 or an external app - to recursively trace the dependencies of a page or control in a solution?

For example, for this file: ~/Controls/SomeControl.ascx, I'd like to get the following list of files that it depends on to run:

~/Controls/SomeControl.ascx
  ~/Controls/SomeControl.ascx.vb
    ~/App_Code/SomeClass.vb
      ~/App_Code/AnotherClass.vb
      ~/App_WebReferences/com/example/SomeWebService/SomeWebService.disco
      ~/App_WebReferences/com/example/SomeWebService/SomeWebService.discomap
      ~/App_WebReferences/com/example/SomeWebService/SomeWebService.wsdl
    ~/App_Code/AnotherClass.vb
flag

6 Answers

vote up 4 vote down check

I've used the Assembly Binding Log Viewer (Fuslogvw.exe) or maybe ProcMon...

One of my coworkers suggested this app called Dependency Auditor. I haven't used it though and am not vouching for it necessarily.

link|flag
1  
Hmm, that addin appears to be for Excel, not VS 2005. – travis May 18 at 19:18
Oh wow! thanks. I'll have to find the correct url... – Jon Ownbey May 18 at 21:09
1  
Fuze is built for this, hard to start with but amazingly useful. – JasonRShaver May 20 at 20:06
1  
I don't think you need to dl it if you are running visual studio. You can access it via the VS Command Window. here is a helpful link. msdn.microsoft.com/en-us/library/… – Jon Ownbey May 21 at 15:32
1  
oh wow, that's really handy, unfortunately it only shows failures or all assembly binding, it doesn''t show assemblies or files for specific project items – travis May 21 at 19:43
show 3 more comments
vote up 3 vote down

MZ Tools 6.0 integrates with Visual Studio and has a "get callers" type feature. http://www.mztools.com/v6/mztools6.aspx

link|flag
Interesting, that Procedure Callers function is pretty sweet. I'm looking for a tool that can just generate a list of files based on other files though. Thanks. – travis May 21 at 14:12
vote up 3 vote down

Have you tried NDepend? There's a plugin for Reflector as well.

link|flag
Hey, thanks Andy! Long time no see :-) Those are both cool but a bit overkill for what I'm looking for. While those give great stats for projects, I'm looking for something where I can pick out a few files in a project. At this point I think I may just have to build it myself. – travis May 21 at 14:07
vote up 3 vote down

I've used AutomatedQA's AQTime do this kind of thing. You can view sequence diagrams, call graphs, etc.... From there you can see which assemblies and files are being used.

They have a free trial that will give you plenty of time to do what you need to do.

link|flag
Hmm, that is interesting, but seems like a bit overkill for what I'm looking for. I just want to select some files in a project and get the other files in the project that they depend on. Thanks. – travis May 21 at 14:19
vote up 2 vote down

Nope. There's no way to do that.

link|flag
Yeah, looks like I'll have to continue doing it by hand. Or write a solution myself... – travis May 22 at 15:23
vote up -1 vote down

I would just move the ascx control to a new project and debug stuff one by one. Then, I would compile that into a dll and use it in the different project.

link|flag
This is exactly what I'm trying to avoid. :-) – travis May 21 at 20:18

Your Answer

Get an OpenID
or
never shown

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