Is there a good tool that will look at a .NET assembly and tell you all of the dependencies it has on other assemblies? Sort of like the old depends.exe from VS6 days.
UPDATE
I guess the one thing that I am missing from Reflector is verion #'s. Unless I am missing something. How do I tell what framework is required by an assembly?
I'm trying to solve this other issue I am having:
http://stackoverflow.com/questions/922681/ironpython-click-once-net-2-0-error-thoughts
From the error message it looks like I need:
Microsoft.Linq.Expressions.Compiler.Snippets
Microsoft.Linq.Expressions.Compiler.LambdaCompiler
Other than the app blowing up on me... how should I have detected a need here? It runs fine on my machine.
Is this a 3.0 or 3.5 thing?