Is it possible to attach the Visual Studio to a process right at the moment when that process starts? Ideally I would like for VS to listen to processes starting until one meets a certain condition, at which point it would immediately attach itself to that process.
In other stack overflow questions I've seen the suggestion to start the process from my own visual studio instance, but in my situation this is not possible. I need to attach VS to a debugger thread in another VS instance with an SSIS project. The debugger thread must be started by that VS instance. I can not attach my VS instance to the process quickly enough by hand to debug certain processes that happen immediately at the start of the thread.