Created
January 15, 2022 05:13
-
-
Save domingoladron/9cf084b01046764b8bc17ab989141cea to your computer and use it in GitHub Desktop.
A launchsettings.json for debugging Blazor WebAssembly in VS Code
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Launch and Debug Standalone Blazor WebAssembly App", | |
"type": "blazorwasm", | |
"request": "launch", | |
"cwd": "${workspaceFolder}/MyBlazorWebAssemblyApp", | |
"url": "http://localhost:5000", | |
"browser": "edge" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment