Files
Entkube/.vscode/tasks.json
2026-05-18 08:37:09 +02:00

28 lines
621 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/src/EntKube.Web/EntKube.Web.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary;ForceNoAlign"
],
"problemMatcher": "$msCompile"
},
{
"label": "test",
"command": "dotnet",
"type": "process",
"args": [
"test",
"${workspaceFolder}/tests/EntKube.Web.Tests/EntKube.Web.Tests.csproj"
],
"problemMatcher": "$msCompile"
}
]
}