Skip to content

Commit

Permalink
Fix VS Code launch config
Browse files Browse the repository at this point in the history
  • Loading branch information
CorruptComputer committed Nov 21, 2024
1 parent 2374865 commit 298d0bc
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 8 deletions.
3 changes: 3 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"recommendations": [ "ms-dotnettools.csharp", "ms-dotnettools.csdevkit", "ms-dotnettools.vscodeintellicode-csharp" ]
}
27 changes: 19 additions & 8 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,33 @@
"version": "0.2.0",
"configurations": [
{
"name": "Launch and Debug Standalone Blazor WebAssembly App",
"type": "blazorwasm",
"name": "Bones.BackgroundService",
"type": "dotnet",
"request": "launch",
"cwd": "${workspaceFolder}/Frontend/Bones.WebUI"
"projectPath": "${workspaceFolder}/Services/Bones.BackgroundService/Bones.BackgroundService.csproj",
},
{
"name": "C#: Bones.BackgroundService Debug",
"name": "Bones.Api",
"type": "dotnet",
"request": "launch",
"projectPath": "${workspaceFolder}/Backend/Bones.BackgroundService/Bones.BackgroundService.csproj",
"projectPath": "${workspaceFolder}/Services/Bones.Api/Bones.Api.csproj",
},
{
"name": "C#: Bones.Api Debug",
"type": "dotnet",
"name": "Bones.WebUI",
"type": "blazorwasm",
"request": "launch",
"projectPath": "${workspaceFolder}/Backend/Bones.Api/Bones.Api.csproj",
"cwd": "${workspaceFolder}/Frontend/Bones.WebUI"
}
],
"compounds": [
{
"name": "Full Stack",
"configurations": [
"Bones.BackgroundService",
"Bones.Api",
"Bones.WebUI"
],
"stopAll": true
}
]
}

0 comments on commit 298d0bc

Please sign in to comment.