COM Interop debugging with Visual Studio 2005

Javier ran into the same problem we ran into last week. We noticed the problem when trying to debug a VB6 .exe that was using COM Interop to .NET components. We weren't able to debug in VS.NET 2003, but were able to attach the debugger in Visual Studio 2005. It freaked us out when we found this, but the fix was very simple.

posted @ Wednesday, March 15, 2006 9:32 PM

Print

Comments on this entry:

# re: COM Interop debugging with Visual Studio 2005

Left by asdf at 12/13/2006 11:36 AM
Gravatar

Ummm.....so..... what was the fix?

# re: COM Interop debugging with Visual Studio 2005

Left by Tim Gifford at 12/13/2006 1:16 PM
Gravatar

Sorry -
Add the requiredRuntime setting in your config file.

<startup>
<requiredRuntime version="v2.0.50727"/>
</startup>

Comments have been closed on this topic.