Plugins , C# runtime dll debugging
-
I'm toying with plugins using the example given at http://www.codeproject.com/csharp/PluginsInCSharp.asp[^] but I can't seem to debug into the runtime loaded plugin dlls. Any help much apprecaited. Regards B
Hi There, I have developed an Add in / bolt on architecture in our existing VB6 app that allows .Net objects to be loaded/hosted and I have been able to debug the .Net code by loading the .Net project, setting a break point on the code that will be called by the VB6 app, then attaching to the VB6 apps process using VS.net. I have also done the same using C# as both the host and the add in. In both of the above cases it involves opening the add in project and attaching to the main project's/applications process using VS.Net. PS: You also need the PDB file to tie the source to the Exe/dll. Hope this helps. DL. MCSD(VB6/SQL7) MCAD(C#/SQL2000) MCSD(C#/SQL2000)
-
I'm toying with plugins using the example given at http://www.codeproject.com/csharp/PluginsInCSharp.asp[^] but I can't seem to debug into the runtime loaded plugin dlls. Any help much apprecaited. Regards B
Try adding the project for the plugin as a sub-project of your solution for the application that loads the plugin. -- Joel Lucsy