Need to populate GetAwaitingDispositionApi.json

This commit is contained in:
2023-01-13 21:52:38 -07:00
parent a697dd31c3
commit b445f7e680
10 changed files with 61 additions and 577 deletions

View File

@ -2,7 +2,7 @@
"version": "0.2.0",
"configurations": [
{
"name": "Launch",
"name": "Launch", // opens a edge window, navigates and click debugs on mine
"type": "blazorwasm",
"request": "launch",
"cwd": "${workspaceFolder}",
@ -11,7 +11,7 @@
"timeout": 120000, // Allows time for the site to launch
},
{
"name": "Watch",
"name": "Watch", // Hot reload works on mine no debug
"type": "coreclr",
"request": "launch",
"cwd": "${workspaceFolder}",
@ -25,24 +25,11 @@
"--verbose" // Let's us confirm browser connects with hot reload capabilities
],
"preLaunchTask": "build" // Ensure we don't watch an unbuilt site
},
{
"name": "Attach",
"type": "blazorwasm",
"request": "attach",
"cwd": "${workspaceFolder}",
"browser": "edge",
"url": "https://localhost:7022", // Tell launch where to find site
"timeout": 120000, // Allows time for the site to launch
}
],
"compounds": [
{
"name": "Hot Reload with Debug - Attach",
"configurations": [ "Watch", "Attach" ]
},
{
"name": "Hot Reload with Debug - Launch",
"name": "* Hot Reload with Debug - Launch",
"configurations": [ "Watch", "Launch" ]
}
]