e7e4c9d493
added a workspace for tasks relying on the existing scripts
47 lines
No EOL
1.3 KiB
JSON
47 lines
No EOL
1.3 KiB
JSON
{
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
// for the documentation about the tasks.json format
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "Windows - Start Game",
|
|
"type": "shell",
|
|
"command": "./start_game.bat",
|
|
"group": "test",
|
|
"presentation": {
|
|
"reveal": "always",
|
|
"panel": "new"
|
|
}
|
|
},
|
|
{
|
|
"label": "Windows - Start AI Server",
|
|
"type": "shell",
|
|
"command": "./start_ai_server.bat",
|
|
"group": "test",
|
|
"presentation": {
|
|
"reveal": "always",
|
|
"panel": "new"
|
|
}
|
|
},
|
|
{
|
|
"label": "Windows - Start Astron Server",
|
|
"type": "shell",
|
|
"command": "./start_astron_server.bat",
|
|
"group": "test",
|
|
"presentation": {
|
|
"reveal": "always",
|
|
"panel": "new"
|
|
}
|
|
},
|
|
{
|
|
"label": "Windows - Start UberDOG Server",
|
|
"type": "shell",
|
|
"command": "./start_uberdog_server.bat",
|
|
"group": "test",
|
|
"presentation": {
|
|
"reveal": "always",
|
|
"panel": "new"
|
|
}
|
|
},
|
|
]
|
|
} |