mirror of
https://github.com/bunny-lab-io/Borealis.git
synced 2025-12-15 01:55:48 -07:00
57 lines
1.2 KiB
JSON
57 lines
1.2 KiB
JSON
{
|
|
"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": []
|
|
}
|
|
]
|
|
}
|