Skip to content

Commit

Permalink
Update VS Code debug config
Browse files Browse the repository at this point in the history
  • Loading branch information
EdwinVW committed Sep 9, 2024
1 parent 483c753 commit 00b2d30
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions src/.vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
"type": "coreclr",
"request": "launch",
"preLaunchTask": "",
"program": "${workspaceFolder}/WebApp/bin/Debug/netcoreapp3.1/WebApp.dll",
"program": "${workspaceFolder}/WebApp/bin/Debug/net8.0/Pitstop.WebApp.dll",
"args": [],
"cwd": "${workspaceFolder}/WebApp/bin/Debug/netcoreapp3.1",
"cwd": "${workspaceFolder}/WebApp/bin/Debug/net8.0",
"stopAtEntry": false,
"serverReadyAction": {
"action": "openExternally",
Expand All @@ -29,9 +29,9 @@
"type": "coreclr",
"request": "launch",
"preLaunchTask": "",
"program": "${workspaceFolder}/CustomerManagementAPI/bin/Debug/netcoreapp3.1/Pitstop.CustomerManagementAPI.dll",
"program": "${workspaceFolder}/CustomerManagementAPI/bin/Debug/net8.0/Pitstop.CustomerManagementAPI.dll",
"args": [],
"cwd": "${workspaceFolder}/CustomerManagementAPI/bin/Debug/netcoreapp3.1",
"cwd": "${workspaceFolder}/CustomerManagementAPI/bin/Debug/net8.0",
"stopAtEntry": false,
"serverReadyAction": {
"action": "openExternally",
Expand All @@ -49,9 +49,9 @@
"type": "coreclr",
"request": "launch",
"preLaunchTask": "",
"program": "${workspaceFolder}/VehicleManagementAPI/bin/Debug/netcoreapp3.1/Pitstop.VehicleManagementAPI.dll",
"program": "${workspaceFolder}/VehicleManagementAPI/bin/Debug/net8.0/Pitstop.VehicleManagementAPI.dll",
"args": [],
"cwd": "${workspaceFolder}/VehicleManagementAPI/bin/Debug/netcoreapp3.1",
"cwd": "${workspaceFolder}/VehicleManagementAPI/bin/Debug/net8.0",
"stopAtEntry": false,
"serverReadyAction": {
"action": "openExternally",
Expand All @@ -69,9 +69,9 @@
"type": "coreclr",
"request": "launch",
"preLaunchTask": "",
"program": "${workspaceFolder}/WorkshopManagementAPI/bin/Debug/netcoreapp3.1/Pitstop.WorkshopManagementAPI.dll",
"program": "${workspaceFolder}/WorkshopManagementAPI/bin/Debug/net8.0/Pitstop.WorkshopManagementAPI.dll",
"args": [],
"cwd": "${workspaceFolder}/WorkshopManagementAPI/bin/Debug/netcoreapp3.1",
"cwd": "${workspaceFolder}/WorkshopManagementAPI/bin/Debug/net8.0",
"stopAtEntry": false,
"serverReadyAction": {
"action": "openExternally",
Expand All @@ -89,9 +89,9 @@
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/AuditlogService/bin/Debug/netcoreapp3.1/Pitstop.AuditlogService.dll",
"program": "${workspaceFolder}/AuditlogService/bin/Debug/net8.0/Pitstop.AuditlogService.dll",
"args": [],
"cwd": "${workspaceFolder}/AuditlogService/bin/Debug/netcoreapp3.1",
"cwd": "${workspaceFolder}/AuditlogService/bin/Debug/net8.0",
"stopAtEntry": false,
"console": "externalTerminal",
"env": {
Expand All @@ -103,9 +103,9 @@
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/InvoiceService/bin/Debug/netcoreapp3.1/Pitstop.InvoiceService.dll",
"program": "${workspaceFolder}/InvoiceService/bin/Debug/net8.0/Pitstop.InvoiceService.dll",
"args": [],
"cwd": "${workspaceFolder}/InvoiceService/bin/Debug/netcoreapp3.1",
"cwd": "${workspaceFolder}/InvoiceService/bin/Debug/net8.0",
"stopAtEntry": false,
"console": "externalTerminal",
"env": {
Expand All @@ -117,9 +117,9 @@
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/NotificationService/bin/Debug/netcoreapp3.1/Pitstop.NotificationService.dll",
"program": "${workspaceFolder}/NotificationService/bin/Debug/net8.0/Pitstop.NotificationService.dll",
"args": [],
"cwd": "${workspaceFolder}/NotificationService/bin/Debug/netcoreapp3.1",
"cwd": "${workspaceFolder}/NotificationService/bin/Debug/net8.0",
"stopAtEntry": false,
"console": "externalTerminal",
"env": {
Expand All @@ -131,9 +131,9 @@
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/TimeService/bin/Debug/netcoreapp3.1/Pitstop.TimeService.dll",
"program": "${workspaceFolder}/TimeService/bin/Debug/net8.0/Pitstop.TimeService.dll",
"args": [],
"cwd": "${workspaceFolder}/TimeService/bin/Debug/netcoreapp3.1",
"cwd": "${workspaceFolder}/TimeService/bin/Debug/net8.0",
"stopAtEntry": false,
"console": "externalTerminal",
"env": {
Expand All @@ -145,9 +145,9 @@
"type": "coreclr",
"request": "launch",
"preLaunchTask": "",
"program": "${workspaceFolder}/WorkshopManagementEventHandler/bin/Debug/netcoreapp3.1/Pitstop.WorkshopManagementEventHandler.dll",
"program": "${workspaceFolder}/WorkshopManagementEventHandler/bin/Debug/net8.0/Pitstop.WorkshopManagementEventHandler.dll",
"args": [],
"cwd": "${workspaceFolder}/WorkshopManagementEventHandler/bin/Debug/netcoreapp3.1",
"cwd": "${workspaceFolder}/WorkshopManagementEventHandler/bin/Debug/net8.0",
"stopAtEntry": false,
"console": "externalTerminal",
"env": {
Expand Down

0 comments on commit 00b2d30

Please sign in to comment.