Files
LehrerApp/.vscode/tasks.json
2026-06-19 00:42:00 +02:00

58 lines
1.3 KiB
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Desktop bauen",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/LehrerApp.Desktop/LehrerApp.Desktop.csproj",
"--configuration", "Debug",
"--verbosity", "minimal"
],
"problemMatcher": "$msCompile",
"group": "build"
},
{
"label": "API bauen",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/LehrerApp.Api/LehrerApp.Api.csproj",
"--configuration", "Debug",
"--verbosity", "minimal"
],
"problemMatcher": "$msCompile",
"group": "build"
},
{
"label": "Solution bauen",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/LehrerApp.sln",
"--configuration", "Debug",
"--verbosity", "minimal"
],
"problemMatcher": "$msCompile",
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "NuGet restore",
"command": "dotnet",
"type": "process",
"args": [
"restore",
"${workspaceFolder}/LehrerApp.sln"
],
"problemMatcher": []
}
]
}