testdemos/.vscode/tasks.json

37 lines
901 B
JSON
Raw Normal View History

{
"version": "2.0.0",
"tasks": [
{
"label": "Build image",
"type": "docker-build",
"dockerBuild": {
"context": "${workspaceFolder}",
"tag": "testdemos:latest"
},
"group": {
"kind": "build",
"isDefault": true
}
},
{
"type": "shell",
"label": "Run container",
"command": "docker run --rm -ti testdemos:latest",
"dependsOn": [
"Build image"
]
}
],
"inputs": [
{
"type": "pickString",
"id": "betaBranch",
"default": "public",
"description": "Select DepotsDownloader branch.",
"options": [
"public",
"steam_legacy"
]
}
]
}