Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jrgcubano/b3fcfe26b6151af2dcad42e946a08b64 to your computer and use it in GitHub Desktop.
Save jrgcubano/b3fcfe26b6151af2dcad42e946a08b64 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