From 7819941b38e44610374f4e4e3a88cf5ccc1a67e5 Mon Sep 17 00:00:00 2001 From: Nicole Rappe Date: Tue, 2 Sep 2025 16:00:20 -0600 Subject: [PATCH] Added VSCode Launch Task --- .vscode/tasks.json | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .vscode/tasks.json diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..519aacc --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,25 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "Launch Borealis (Windows)", + "type": "shell", + "command": "powershell.exe", + "args": [ + "-ExecutionPolicy", "Bypass", + "-File", "${workspaceFolder}/Borealis.ps1" + ], + "group": { + "kind": "build", + "isDefault": true + }, + "presentation": { + "echo": true, + "reveal": "always", + "focus": true, + "panel": "shared" + }, + "problemMatcher": [] + } + ] +} \ No newline at end of file