HandmadeHero/.vscode/tasks.json

24 lines
535 B
JSON
Raw Normal View History

2023-10-10 10:08:08 -07:00
{
"version": "2.0.0",
"tasks": [
{
"label": "build development",
"type": "shell",
"command": "pwsh.exe",
"args": [
"-NoProfile",
"-ExecutionPolicy",
"Bypass",
"-File",
"${workspaceFolder}/scripts/build.ps1",
"msvc",
"dev"
],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}