From eace005902defed2928643015863a7a70b720170 Mon Sep 17 00:00:00 2001 From: Gregg Miskelly Date: Wed, 23 Nov 2016 10:35:26 -0800 Subject: [PATCH] Add remote debugging link to debugger.md (#981) --- debugger.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/debugger.md b/debugger.md index 6d1be33..15f59b4 100644 --- a/debugger.md +++ b/debugger.md @@ -155,3 +155,7 @@ Select the '.NET Core Attach' configuration. Clicking the play button (or pressi #### Docker Support Using Visual Studio Code and the C# extension it is also possible to debug your code running in a [Docker container](https://en.wikipedia.org/wiki/Docker_(software)). To do so, follow instructions to install and run [yo docker](https://github.com/Microsoft/generator-docker#generator-docker). This will add files to your project to build a container, and it will add a new debug launch configuration which will invoke a container build, and then debug your app in the container. + +#### Remote Debugging + +In addition to Docker, it is also possible to setup the debugger to remotely attach or launch using other transports (ex: SSH). See [Attaching to remote processes](https://github.com/OmniSharp/omnisharp-vscode/wiki/Attaching-to-remote-processes) in the wiki for more information.