The breakpoints aren't hit in a ASP.NET Core 3.1, Blazor Webassembly project.
I have a solution with a single Blazor Webassembly project which I run locally.
When placing a breakpoint in a .cs file it says:
"The breakpoint will not currently be hit. A copy of Startup.cs wasfound in blazor-devserver.dll, but the current source code isdifferent from the version built into blazor-devserver.dll.
To allow this breakpoint to be hit, click the 'Settings...' buttonthat appears, then click 'Location', 'Allow the source code to bedifferent from the original.' ..."
This seems strange to me because I haven't deployed it, I just press F5 in Visual Studio so I don't see how the code can be different.
When the breakpoint is placed in a .razor file it says:
"The breakpoint will not currently be hit. No symbols have been loadedfor this document"
In the modules window, symbols have been loaded for all the entries.
It worked fine until recently.The only thing I did was install Microsoft Code Analysis 2019 (I removed it again).