Is there a way to debug .Net dll from SSIS Script Component which is being referenced.
Thanks
Is there a way to debug .Net dll from SSIS Script Component which is being referenced.
Thanks
You can attach Visual Studio to any local process (or a remote process if the remote debugger is set up.)
Now you can break into the debugger as you normally would and breakpoints should get hit. If the debug symbols can't be loaded for whatever reason, open the Modules window, find the managed DLL, right click and "Load Symbols" to find them.
System.Diagnostics.Debugger.Launch() and System.Diagnostics.Debugger.Break() can be useful with this type of problem. However try "attach to proccess" in the debug menu as Josh say first, as it it easyer when it works.