diff --git a/.vscode/.vscode/tasks.json b/.vscode/.vscode/tasks.json deleted file mode 100644 index 7765da75..00000000 --- a/.vscode/.vscode/tasks.json +++ /dev/null @@ -1,56 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "Borealis - Engine (Production)", - "type": "shell", - "command": "powershell.exe", - "args": [ - "-NoLogo", - "-NoProfile", - "-ExecutionPolicy", "Bypass", - "-File", "${workspaceFolder}\\Borealis.ps1", - "-EngineProduction" - ], - "presentation": { - "reveal": "always", - "panel": "shared" - }, - "problemMatcher": [] - }, - { - "label": "Borealis - Engine (Dev)", - "type": "shell", - "command": "powershell.exe", - "args": [ - "-NoLogo", - "-NoProfile", - "-ExecutionPolicy", "Bypass", - "-File", "${workspaceFolder}\\Borealis.ps1", - "-EngineDev" - ], - "presentation": { - "reveal": "always", - "panel": "shared" - }, - "problemMatcher": [] - }, - { - "label": "Borealis - Agent", - "type": "shell", - "command": "powershell.exe", - "args": [ - "-NoLogo", - "-NoProfile", - "-ExecutionPolicy", "Bypass", - "-File", "${workspaceFolder}\\Borealis.ps1", - "-Agent" - ], - "presentation": { - "reveal": "always", - "panel": "shared" - }, - "problemMatcher": [] - } - ] -}