tags:

views:

11

answers:

1

I'm writing a custom SSIS task. At the moment, each time I make a code change, I'm having to recompile and re-gac the containing assembly, restart my test SSIS package, delete and re-add the task from the tool box, then re-add the task and run the package.

Does anyone know if there's a way of stepping through my custom ssis task code at run-time? If not, is it possible to use console.write commands from my task code and see those messages while running my test ssis package?

A: 

Found the answer to this on MSDN: link text

jules