3

In Visual Studio I have settings to attach automatically to a local process:

enter image description here

So, when I click the selected button, it will automatically build the code and attach to the running local process specified in properties->configuration properties->debugging->Command

Now I'm trying to do the same setup in Rider, so I can build + debug with 1 click without having to build, attach to, search process in list, then attach.

enter image description here

I was trying to create a config for it but I just don't see how to do it:

enter image description here

How can I recreate the same setup (or most similar) I have in Visual Studio?

kuhi
  • 531
  • 5
  • 23

1 Answers1

0

https://www.jetbrains.com/help/rider/Attaching_to_Local_Process.html#reattach-to-process

You can attach again to the very last process that you have attached to, even without opening the dialog. To do so, press ⌘+⌥+⇧+F5 or choose Run | Reattach to Process from the main menu.

To make this easier you can add this command to your main menu and use it instead of the default Run or Debug commands.

enter image description here

You will need to attach to the process once manually though.

Scott Kuhl
  • 1,021
  • 11
  • 11