From 22a5dd600ba2b5f01eb1239f4c7c0707a6042693 Mon Sep 17 00:00:00 2001 From: GuilhermeWerner <26710260+GuilhermeWerner@users.noreply.github.com> Date: Sun, 4 Jul 2021 10:15:54 -0300 Subject: [PATCH] Create launch.json --- .vscode/launch.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..7741704 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,19 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Debug", + "type": "cppvsdbg", + "request": "launch", + "program": "${workspaceFolder}/Binaries/debug/HttpServer", + "windows": { + "program": "${workspaceFolder}/Binaries/debug/HttpServer.exe", + }, + "args": [], + "stopAtEntry": false, + "cwd": "${workspaceFolder}/Binaries/debug", + "environment": [], + "console": "externalTerminal" + } + ] +}