c# - Debugging .NET dll from script component (SSIS) -
There is a way to debug Net Del from SSIS scripts components that are being referred.
Thanks
You can add Visual Studio to any local process ( Or if the remote process.)
>- Open the DLL project in Visual Studio
- Select the attach process from the debug menu (or tools menu).
- Select the ... button next to the box labeled "Attach" to ensure that the code type / managed code is checked.
- Find the SSIS process in the Available Process list, I do not remember the name of the process by hand, but it should be x86, managed in type column. Check "Processes to show from all users" might be.
- Click Attach.
Now you can break into debugger like you should usually hit the breakpoint if the debug symbols can not be loaded for any reason, open the module window, manage DLL Find, right-click and find "Load symbols"
Comments
Post a Comment