diff --git a/.vscode/launch.json b/.vscode/launch.json index 600453d..6e73b4c 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -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" + ] } ] } \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json index d07de90..cef9c12 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -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" }, {