In my dotnet core 2.0 application I re-launch the same application in a different process (with some different arguments) at a certain point. I want to be able to programmatically attach the current Visual Studio (2017) debugger to the new process.
Here is an example of how it is done in full framework but for starters the Marshal.GetActiveObject
method doesn't appear to exist.
Is there a different way to achieve this in dotnet core 2.0? Or is it just not possible?