AdventOfCode/.vscode/tasks.json

17 lines
252 B
JSON
Raw Normal View History

{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "Run build script",
"command": "./build-all.ps1",
"options": {
"cwd": "${workspaceFolder}/c/"
},
"group": {
"kind": "build",
"isDefault": true
},
}
]
}