LINQPad 6 Attach Debugger
In LINQPad 5 (with Run each query in its own process set to false), I could quickly attach and reattach Visual Studio's debugger to my LINQPad query to step through my code.
With LINQPad 6 I see multiple LINQPad6.query.exe process. If I try attaching to different ones I will eventually get the one that is running my query and I can step through my code.
Is there a way to get LINQPad 6 to act like version 5 in the sense that it just runs one process so I can easily attach and reattach the debugger?
Thanks
Comments
Add the following code to the start of your query:
Then choose Visual Studio for the debugger when the dialog pops up.
Thanks, I never knew about that debugging that way