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