I know there are many tools. I want to find out a good tool to show me what assembly is missing. I encountered an exception saying that one of the dependency assembly might be missing when I tried to run a .NET app.

UPDATE

I want to test it on live server. Thus, ideally, I can run it without changes to the server. I can install application on the server.

Thanks in advance.

link|improve this question

49% accept rate
feedback

closed as not a real question by Oded, Stuart Dunkeld, Davide Piras, Steven, Jeremy McGee Nov 28 '11 at 11:44

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

3 Answers

To check for runtime binding errors, one simple and efficient way is to turn on Fusion log (just change HKLM\Software\Microsoft\Fusion\ForceLog to 1 in the registry). This will allow you to check the detailed logs on the error in the Exception.FusionLog property and also examine details via the Assembly Binding Log Viewer.

Scott Hanselman has a good article on the point.

link|improve this answer
Thanks! I want to test it on live server. Thus, ideally, I can run it without changes to the server. I can install application on the server. – Pingpong Nov 28 '11 at 11:37
feedback

I once used Dependeny Walker, specifically for .NET is the Assembly Depenency Analyser

link|improve this answer
Thank you for your advice. I want to test it on live server. Thus, ideally, I can run it without changes to the server. I can install application on the server. – Pingpong Nov 28 '11 at 11:37
feedback

I would look at using the Dot Net Reflector:

http://en.wikipedia.org/wiki/.NET_Reflector

Or Dot Peek from jet brains:

http://www.jetbrains.com/decompiler/

link|improve this answer
Thank you for your advice. I want to test it on live server. Thus, ideally, I can run it without changes to the server. I can install application on the server. – Pingpong Nov 28 '11 at 11:37
feedback

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