No description
- CSS 51.2%
- HTML 35.4%
- JavaScript 6.8%
- C# 6.6%
| BlazorDebugDemo.Server | ||
| BlazorDebugDemo.Shared | ||
| BlazorDebugDemo.WASM | ||
| .gitignore | ||
| BlazorDebugDemo.sln | ||
| README.md | ||
nvim + C#: debugging blazor WASM projects
Why can't we just debug from within neovim?
netcoredbg Doesn't work since the WASM is running in the browser and netcoredbg can't attach to it.
how to debug in the browser
- wasm project >
dotnet run -c Debug - navigate to page (chrome) > as it loads:
alt+shift+d(make sure the debugging proxy is running:chromium --remote-debugging-port=9222 --user-data-dir=/tmp/blazor-chrome-debug) - got to
file://> your.csfile - set break point
- go to tab in question, F5
In the end it should look something like this
