Debugging an Assembly DLL

  • Thread starter Thread starter Daniel Secci
  • Start date Start date
D

Daniel Secci

Hi all,

I have an application which dynamically loads an Assembly DLL in the current
AppDomain.
I have to debug this assembly. How can I do that ? (VS 2003)
I tried to attach the main process with the debugger but it does not help.

Thanks in advance,
Daniel Secci
 
Daniel said:
I have an application which dynamically loads an Assembly DLL in the current
AppDomain.
I have to debug this assembly. How can I do that ? (VS 2003)
I tried to attach the main process with the debugger but it does not help.

This should work. You may need to manually fix the symbol path to include
the symbols for your DLL. Open the Modules view to see what symbols are
loaded. Right-click on this view and choose Symbol Settings... to update
symbol locations. Also make sure you're using the debug version of your
DLL. I hope this helps, please write back if you haven't figured out your
problem.
 
Back
Top