{ // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { "name": "Launch and Debug Standalone Blazor WebAssembly App", "type": "blazorwasm", "request": "launch", "cwd": "${workspaceFolder}", "url": "http://localhost:5254;http://192.168.190.123:5254" // Tell launch where to find site }, { "name": "Watch", "type": "coreclr", "request": "launch", "cwd": "${workspaceFolder}/DocuMed.PWA", "program": "dotnet", "args": [ "watch", "--project", ".", "--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}", "url": "http://localhost:5254;http://192.168.190.123:5254", // Tell launch where to find site "timeout": 120000, // Allows time for the site to launch } ], "compounds": [ { "name": "Debug with Hot Reload", "configurations": [ "Watch", "Attach" ] } ] }