Mark subproject as dirty in CMKS - Infra

This commit is contained in:
Nils Blomgren
2026-05-18 08:37:09 +02:00
parent 328d494530
commit 8b94fb8826
635 changed files with 81145 additions and 100551 deletions

77
.vscode/launch.json vendored
View File

@@ -2,10 +2,10 @@
"version": "0.2.0",
"configurations": [
{
"name": "Web (BFF)",
"name": "EntKube.Web",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build-web",
"preLaunchTask": "build",
"program": "${workspaceFolder}/src/EntKube.Web/bin/Debug/net10.0/EntKube.Web.dll",
"args": [],
"cwd": "${workspaceFolder}/src/EntKube.Web",
@@ -15,79 +15,8 @@
"pattern": "\\bNow listening on:\\s+(https?://\\S+)"
},
"env": {
"ASPNETCORE_ENVIRONMENT": "Development",
"ASPNETCORE_URLS": "http://localhost:5000"
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
{
"name": "Clusters API",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build-clusters",
"program": "${workspaceFolder}/src/EntKube.Clusters/bin/Debug/net10.0/EntKube.Clusters.dll",
"args": [],
"cwd": "${workspaceFolder}/src/EntKube.Clusters",
"stopAtEntry": false,
"env": {
"ASPNETCORE_ENVIRONMENT": "Development",
"ASPNETCORE_URLS": "http://localhost:5010"
}
},
{
"name": "Identity API",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build-identity",
"program": "${workspaceFolder}/src/EntKube.Identity/bin/Debug/net10.0/EntKube.Identity.dll",
"args": [],
"cwd": "${workspaceFolder}/src/EntKube.Identity",
"stopAtEntry": false,
"env": {
"ASPNETCORE_ENVIRONMENT": "Development",
"ASPNETCORE_URLS": "http://localhost:5030"
}
},
{
"name": "Provisioning API",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build-provisioning",
"program": "${workspaceFolder}/src/EntKube.Provisioning/bin/Debug/net10.0/EntKube.Provisioning.dll",
"args": [],
"cwd": "${workspaceFolder}/src/EntKube.Provisioning",
"stopAtEntry": false,
"env": {
"ASPNETCORE_ENVIRONMENT": "Development",
"ASPNETCORE_URLS": "http://localhost:5020"
}
},
{
"name": "Secrets API",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build-secrets",
"program": "${workspaceFolder}/src/EntKube.Secrets/bin/Debug/net10.0/EntKube.Secrets.dll",
"args": [],
"cwd": "${workspaceFolder}/src/EntKube.Secrets",
"stopAtEntry": false,
"env": {
"ASPNETCORE_ENVIRONMENT": "Development",
"ASPNETCORE_URLS": "http://localhost:5040"
}
}
],
"compounds": [
{
"name": "All Services",
"configurations": [
"Web (BFF)",
"Clusters API",
"Identity API",
"Provisioning API",
"Secrets API"
],
"preLaunchTask": "build-all",
"stopAll": true
}
]
}

77
.vscode/tasks.json vendored
View File

@@ -2,7 +2,7 @@
"version": "2.0.0",
"tasks": [
{
"label": "build-web",
"label": "build",
"command": "dotnet",
"type": "process",
"args": [
@@ -14,83 +14,14 @@
"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",
"label": "test",
"command": "dotnet",
"type": "process",
"args": [
"test",
"${workspaceFolder}/EntKube.slnx",
"--no-build"
"${workspaceFolder}/tests/EntKube.Web.Tests/EntKube.Web.Tests.csproj"
],
"problemMatcher": "$msCompile",
"group": {
"kind": "test",
"isDefault": true
}
"problemMatcher": "$msCompile"
}
]
}