Updated debug scripts
This commit is contained in:
parent
f8ad0399b8
commit
ac17d9a432
22
.vscode/launch.json
vendored
22
.vscode/launch.json
vendored
@ -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
5
.vscode/tasks.json
vendored
@ -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"
|
||||
},
|
||||
{
|
||||
|
Reference in New Issue
Block a user