Debugging an Assembly DLL

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
 
D

Derrick Coetzee [MSFT]

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top