oldschool-toontown/.vscode/tasks.json
TheFamiliarScoot 6d7b5070c5 vs code tasks
cool B)
2021-07-30 17:27:31 -04:00

99 lines
No EOL
2.9 KiB
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Start Game",
"type": "shell",
"command": "./.vscode/linux/start_game.sh",
"windows": {
"command": ".\\.vscode\\win32\\start_game.bat"
},
"group": "test",
"presentation": {
"reveal": "always",
"panel": "new"
}
},
{
"label": "Start Game (Darwin)",
"type": "shell",
"command": "./.vscode/darwin/start_game.sh",
"group": "test",
"presentation": {
"reveal": "always",
"panel": "new"
}
},
{
"label": "Start AI Server",
"type": "shell",
"command": "./.vscode/linux/start_ai_server.sh",
"windows": {
"command": ".\\.vscode\\win32\\start_ai_server.bat"
},
"group": "test",
"presentation": {
"reveal": "always",
"panel": "new"
}
},
{
"label": "Start AI Server (Darwin)",
"type": "shell",
"command": "./.vscode/darwin/start_ai_server.sh",
"group": "test",
"presentation": {
"reveal": "always",
"panel": "new"
}
},
{
"label": "Start Astron Server",
"type": "shell",
"command": "./.vscode/linux/start_astron_server.sh",
"windows": {
"command": ".\\.vscode\\win32\\start_astron_server.bat"
},
"group": "test",
"presentation": {
"reveal": "always",
"panel": "new"
}
},
{
"label": "Start Astron Server (Darwin)",
"type": "shell",
"command": "./.vscode/darwin/start_astron_server.sh",
"group": "test",
"presentation": {
"reveal": "always",
"panel": "new"
}
},
{
"label": "Start UberDOG Server",
"type": "shell",
"command": "./.vscode/linux/start_uberdog_server.sh",
"windows": {
"command": ".\\.vscode\\win32\\start_uberdog_server.bat"
},
"group": "test",
"presentation": {
"reveal": "always",
"panel": "new"
}
},
{
"label": "Start UberDOG Server (Darwin)",
"type": "shell",
"command": "./.vscode/darwin/start_uberdog_server.sh",
"group": "test",
"presentation": {
"reveal": "always",
"panel": "new"
}
}
]
}