practicekea_backend/microservices/admin/.vscode/tasks.json

20 lines
427 B
JSON
Raw Permalink Normal View History

2024-12-02 13:24:34 +00:00
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "process",
"command": "dotnet",
"args": [
"build",
"${workspaceFolder}/API.ADMIN.csproj"
],
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": "$msCompile"
}
]
}