Files
Entkube/.vscode/tasks.json
2026-05-13 14:01:32 +02:00

97 lines
2.5 KiB
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "build-web",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/src/EntKube.Web/EntKube.Web.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary;ForceNoAlign"
],
"problemMatcher": "$msCompile"
},
{
"label": "build-clusters",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/src/EntKube.Clusters/EntKube.Clusters.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary;ForceNoAlign"
],
"problemMatcher": "$msCompile"
},
{
"label": "build-identity",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/src/EntKube.Identity/EntKube.Identity.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary;ForceNoAlign"
],
"problemMatcher": "$msCompile"
},
{
"label": "build-provisioning",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/src/EntKube.Provisioning/EntKube.Provisioning.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary;ForceNoAlign"
],
"problemMatcher": "$msCompile"
},
{
"label": "build-secrets",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/src/EntKube.Secrets/EntKube.Secrets.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary;ForceNoAlign"
],
"problemMatcher": "$msCompile"
},
{
"label": "build-all",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/EntKube.slnx",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary;ForceNoAlign"
],
"problemMatcher": "$msCompile",
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "test-all",
"command": "dotnet",
"type": "process",
"args": [
"test",
"${workspaceFolder}/EntKube.slnx",
"--no-build"
],
"problemMatcher": "$msCompile",
"group": {
"kind": "test",
"isDefault": true
}
}
]
}