2020-09-20 07:14:39 -06:00
|
|
|
{
|
|
|
|
"version": "2.0.0",
|
|
|
|
"tasks": [
|
|
|
|
{
|
|
|
|
"label": "Download games and dependencies",
|
|
|
|
"type": "shell",
|
2020-12-03 03:06:59 -07:00
|
|
|
"linux": {
|
|
|
|
"command": "bash ${workspaceFolder}/.vscode/scripts/download.sh '${workspaceFolder}'",
|
|
|
|
},
|
|
|
|
"windows": {
|
2021-05-22 12:21:40 -06:00
|
|
|
"command": "PowerShell.exe -ExecutionPolicy Bypass -File '${workspaceFolder}/.vscode/scripts/download.ps1' '${workspaceFolder}'",
|
2020-12-03 03:06:59 -07:00
|
|
|
},
|
2020-09-20 07:14:39 -06:00
|
|
|
"problemMatcher": [],
|
|
|
|
"group": "build",
|
|
|
|
"presentation": {
|
|
|
|
"reveal": "always",
|
|
|
|
"panel": "new"
|
|
|
|
}
|
2020-12-03 03:06:59 -07:00
|
|
|
},
|
2020-09-20 07:14:39 -06:00
|
|
|
]
|
|
|
|
}
|