AdventOfCode/.vscode/tasks.json
Tobias Berger dddf368391
C Day 3 (Part 1 only)
Signed-off-by: Tobias Berger <tobi.berger13@gmail.com>
2022-12-01 13:26:44 +01:00

17 lines
No EOL
252 B
JSON

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