{ // 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" } } ] }