Copy base from mistoxwebsite
Docker Build and Release Upload / build (push) Has been cancelled

This commit is contained in:
2025-07-13 19:04:43 -07:00
parent a0e106c2bc
commit 22a30933ca
103 changed files with 13926 additions and 457 deletions
+2 -2
View File
@@ -5,8 +5,8 @@
"name": "Launch ASP.NET Core backend",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "server-build",
"program": "boredcareers.dll",
"preLaunchTask": "build-all",
"program": "Server.dll",
"args": [],
"cwd": "${workspaceFolder}/debug/",
"stopAtEntry": false,
+31 -1
View File
@@ -7,11 +7,41 @@
"type": "process",
"args": [
"build",
"${workspaceFolder}/boredcareers/boredcareers.csproj",
"${workspaceFolder}/src/Server/Server.csproj",
"-o",
"${workspaceFolder}/debug/",
],
"problemMatcher": "$msCompile"
},
{
"label": "client-build",
"command": "ng",
"type": "process",
"options": {
"cwd": "${workspaceFolder}/src/Client"
},
"args": [
"build",
"--base-href=http://localhost:5000"
],
"problemMatcher": "$msCompile"
},
{
"label": "client-packages",
"command": "npm",
"type": "process",
"options": {
"cwd": "${workspaceFolder}/src/Client"
},
"args": [
"install"
],
"problemMatcher": "$msCompile"
},
{
"label": "build-all",
"dependsOn": ["client-packages", "client-build", "server-build" ],
"dependsOrder": "sequence"
}
]
}