Created
April 1, 2017 02:16
-
-
Save anonymous/f6900e19cd7b3763eb5bdcd8481274d1 to your computer and use it in GitHub Desktop.
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
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "StartCake", | |
"type": "mono", | |
"request": "launch", | |
"program": "${workspaceRoot}/tools/Cake/Cake.exe", | |
"runtimeArgs": [ | |
"--debug", | |
"--debugger-agent=transport=dt_socket,server=y,address=127.0.0.1:55556" | |
], | |
"args": [ | |
"${workspaceRoot}/build.cake", | |
"--verbosity=diagnostic" | |
], | |
"cwd": "${workspaceRoot}", | |
"console":"internalConsole", | |
"noDebug": true | |
}, | |
{ | |
"name": "AttachCake", | |
"type": "mono", | |
"request": "attach", | |
"address": "localhost", | |
"port": 55556 | |
} | |
], | |
"compounds": [ | |
{ | |
"name": "DebugCake", | |
"configurations": ["StartCake", "AttachCake"] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment