Updated debug scripts

This commit is contained in:
watsonb8 2019-11-04 01:27:55 -05:00
parent f8ad0399b8
commit ac17d9a432
2 changed files with 21 additions and 6 deletions

22
.vscode/launch.json vendored
View File

@ -6,11 +6,31 @@
"configurations": [
{
"preLaunchTask": "build-and-start-debug-server",
"name": "Debug",
"name": "Start and Attach",
"type": "mono",
"request": "attach",
"address": "localhost",
"port": 55555,
},
{
"preLaunchTask": "Attach",
"name": "Attach",
"type": "mono",
"request": "attach",
"address": "localhost",
"port": 55555,
},
{
"preLaunchTask": "build",
"name": "Launch",
"type": "mono",
"request": "launch",
"console": "internalConsole",
"program": "${workspaceFolder}/Aurora.gtk/bin/Debug/Aurora.gtk.exe",
"args": [
"--debug",
"--debuggre-agent=transport=dt_socket,server=y,address=127.0.0.1:5555"
]
}
]
}

5
.vscode/tasks.json vendored
View File

@ -13,11 +13,6 @@
"/t:build"
],
"group": "build",
"presentation": {
// Reveal the output only if unrecognized errors occur.
"reveal": "silent"
},
// Use the standard MS compiler pattern to detect errors, warnings and infos
"problemMatcher": "$msCompile"
},
{