Forked from VladimirAkopyan/VisualStudio Code Remote attach
Created
June 12, 2018 10:25
-
-
Save solrevdev/d1bc85b9516860c309bfccc459318d56 to your computer and use it in GitHub Desktop.
VisualStudio Code Remote attach and debug
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": ".NET Core Remote Attach", | |
| "type": "coreclr", | |
| "request": "attach", | |
| "processId": "${command:pickRemoteProcess}", | |
| "pipeTransport": | |
| { | |
| "debuggerPath": "~/vsdbg/vsdbg", | |
| "pipeCwd": "${workspaceFolder}", | |
| "windows": { | |
| "pipeProgram": "plink.exe", | |
| "pipeArgs": [ "-l", "root", "-pw", "Docker!", "localhost", "-P", "2222", "-T" ], | |
| "quoteArgs": true | |
| }, | |
| "osx": { | |
| "pipeProgram": "ssh", | |
| "pipeArgs": [ "root@localhost:2222" ], | |
| "quoteArgs": true | |
| }, | |
| "linux": { | |
| "pipeProgram": "ssh", | |
| "pipeArgs": [ "root@localhost:2222" ], | |
| "quoteArgs": true | |
| } | |
| }, | |
| "sourceFileMap": { | |
| "/src": "${workspaceFolder}", | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment