Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 20 additions & 4 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@
"stopAtEntry": false,
},
{
"name": ".NET Core Launch (web)",
"name": "Lexbox API (Launch)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"preLaunchTask": "Build Lexbox API",
"program": "${workspaceFolder}/backend/LexBoxApi/bin/Debug/net9.0/LexBoxApi.dll",
"args": [],
"cwd": "${workspaceFolder}/backend/LexBoxApi",
Expand All @@ -40,10 +40,26 @@
}
},
{
"name": ".NET Core Attach",
"name": "Lexbox API (Attach)",
"type": "coreclr",
"request": "attach",
"processName": "LexBoxApi"
}
},
{
"name": "FwHeadless",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "Build FwHeadless",
"program": "${workspaceFolder}/backend/FwHeadless/bin/Debug/net9.0/FwHeadless.dll",
"args": [],
"cwd": "${workspaceFolder}/backend/FwHeadless",
"stopAtEntry": false,
"env": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"sourceFileMap": {
"/Views": "${workspaceFolder}/Views"
}
},
]
}
20 changes: 16 additions & 4 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"problemMatcher": "$msCompile"
},
{
"label": "build",
"label": "Build Lexbox API",
"command": "dotnet",
"type": "process",
"args": [
Expand All @@ -26,7 +26,7 @@
"problemMatcher": "$msCompile"
},
{
"label": "publish",
"label": "Publish Lexbox API",
"command": "dotnet",
"type": "process",
"args": [
Expand All @@ -38,7 +38,7 @@
"problemMatcher": "$msCompile"
},
{
"label": "watch",
"label": "Watch Lexbox API",
"command": "dotnet",
"type": "process",
"args": [
Expand All @@ -48,6 +48,18 @@
"${workspaceFolder}/backend/LexBoxApi/LexBoxApi.csproj"
],
"problemMatcher": "$msCompile"
}
},
{
"label": "Build FwHeadless",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/backend/FwHeadless/FwHeadless.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
]
}