This commit is contained in:
2025-05-28 13:34:48 -07:00
parent 65a433e9ab
commit 7eba0fa25a
87 changed files with 3775 additions and 1351 deletions

42
.vscode/launch.json vendored
View File

@ -15,6 +15,48 @@
"console": "integratedTerminal",
"stopAtEntry": false
},
{
"name": ".NET Core Launch (web) - Fab2ApprovalMKLink",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "Fab2ApprovalMKLink-build",
"program": "${workspaceFolder}/Fab2ApprovalMKLink/bin/Debug/net8.0/Fab2ApprovalMKLink.dll",
"args": [],
"cwd": "${workspaceFolder}",
"stopAtEntry": false,
"serverReadyAction": {
"action": "openExternally",
"pattern": "\\bNow listening on:\\s+(https?://\\S+)",
"uriFormat": "%s/swagger/index.html"
},
"env": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"sourceFileMap": {
"/Views": "${workspaceFolder}/Views"
}
},
{
"name": ".NET Core Launch (web) - fab-004",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "fab-004-build",
"program": "${workspaceFolder}/fab-004/bin/net8.0/fab-004.dll",
"args": [],
"cwd": "${workspaceFolder}",
"stopAtEntry": false,
"serverReadyAction": {
"action": "openExternally",
"pattern": "\\bNow listening on:\\s+(https?://\\S+)",
"uriFormat": "%s/swagger/index.html"
},
"env": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"sourceFileMap": {
"/Views": "${workspaceFolder}/Views"
}
},
{
"name": ".NET Core Launch (console) - MesaFabApproval.API",
"type": "coreclr",

16
.vscode/tasks.json vendored
View File

@ -63,6 +63,7 @@
"type": "process",
"args": [
"format",
"${workspaceFolder}/Fab2ApprovalMKLink/Fab2ApprovalMKLink.csproj",
"--report",
".vscode",
"--verbosity",
@ -78,7 +79,8 @@
"type": "process",
"args": [
"format",
"whitespace"
"whitespace",
"${workspaceFolder}/Fab2ApprovalMKLink/Fab2ApprovalMKLink.csproj"
],
"problemMatcher": "$msCompile"
},
@ -94,6 +96,18 @@
],
"problemMatcher": "$msCompile"
},
{
"label": "fab-004-build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/fab-004/fab-004.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "Fab2ApprovalMKLink-publish",
"command": "dotnet",