Files
klapi/.vscode/tasks.json

17 lines
322 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "build App API",
"type": "process",
"command": "dotnet",
"args": ["build", "${workspaceFolder}/api/Public/App.csproj"],
"problemMatcher": "$msCompile",
"group": {
"kind": "build",
"isDefault": true
}
}
]
}