Skip to content

Instantly share code, notes, and snippets.

Created April 1, 2017 02:16
Show Gist options
  • Save anonymous/f6900e19cd7b3763eb5bdcd8481274d1 to your computer and use it in GitHub Desktop.
Save anonymous/f6900e19cd7b3763eb5bdcd8481274d1 to your computer and use it in GitHub Desktop.
{
"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