| adam23 2004-06-20, 11:04 pm |
| I am trying to debug a pipeline component in VB.Net through VS 2K3's debugger on a Win 2K3 box. The component is registered for COM interop and the pipeline comonent is being called in the pipeline. However, Visual Studio isn't intercepting the excecuti
on when I set break points. I looked in the docs and this was all I could find (below). Does anyone have any ideas.. or where there is a more detailed resource?
Debugging Visual Basic .NET and C# Pipeline Components
If the Visual Basic .NET or C# pipeline component is installed in the Global Assembly Cache (GAC), and is therefore strongly signed, then running the Register Assembly Utility (regasm.exe) will register the component. If the pipeline component is not inst
alled in the GAC, you need to add the registration value for "codebase=<full-path>" under the component's class ID. This registration value is written automatically when the project is built from Visual Studio .NET. However, when you copy that DLL to anot
her box, when you deploy it for instance, and run the regasm.exe utility on it, regasm.exe does not register it, and therefore the creation of that pipeline component fails.
|