From c0c5d2cd9aa990ccc95ffdd1fdc04d93c693e9ea Mon Sep 17 00:00:00 2001 From: b-mayr-1984 Date: Sat, 6 Jul 2024 12:23:20 +0200 Subject: [PATCH] enable VSC debugger for further information watch https://www.youtube.com/watch?v=Y70b3uQvRoQ Co-Authored-By: Dedmen Miller <3768165+dedmen@users.noreply.github.com> --- .gitignore | 2 +- .vscode/launch.json | 15 +++++++++++++++ 2 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 .vscode/launch.json diff --git a/.gitignore b/.gitignore index a0f0d17a..bd4cb3e6 100644 --- a/.gitignore +++ b/.gitignore @@ -4,7 +4,7 @@ releases/* *.biprivatekey *.pbo .idea/ -.vscode/ +# .vscode/ .hemtt/local # Windows image file caches diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 00000000..c2e5de55 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,15 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "connect", + "type": "sqf", + "request": "launch", + "missionRoot": "${workspaceFolder}", + "scriptPrefix": "x\\grad" + } + ] +} \ No newline at end of file