Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save domingoladron/9cf084b01046764b8bc17ab989141cea to your computer and use it in GitHub Desktop.
Save domingoladron/9cf084b01046764b8bc17ab989141cea to your computer and use it in GitHub Desktop.
A launchsettings.json for debugging Blazor WebAssembly in VS Code
{
"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