Catherine,
You might try attaching the debugger directly to the process. In Visual Studio 2003, you can do this from the Tools Menu:
1 Select 'Debug Processes' with your addon running.
2. You should be given a list of processes running on your machine. Highlight your addon process and click 'Attach'.
3. You should be given a list of debugging options. Select 'Common Language Runtime' to enable .NET-specific debugging.
If you use a debug version of your addon and include the debug file (.pdb) in the execution directory, you should even be able to use breakpoints, watches, etc.
Corbin
Add comment