This project is Blazorwasm -- hosted.
I cannot click stop or restart debugger tab. I have to reopen VS Code for work again and I cannot debug code in VS Code. I cannot set breakpoint for check. I just can run from dotnet run or dotnet watch run How to resolve this problem.
This is my launch.json. Is this correct?
{ "version": "0.2.0", "configurations": [ { "name": "Launch and Debug Standalone Blazor WebAssembly App", "type": "blazorwasm", "request": "launch", "cwd": "${workspaceFolder}/Server" } ] } 