I have a Blazor Web Assembly project that is hosted in an ASP.NET application. Both projects are .NET 8. I am using an authentication process that was documented by Damien Bod to log in using Azure Entra ID authentication. When I debug the project in Visual Studio, as soon as the authentication completes, the IDE breaks on a file called /VMNNNNNN (where the Ns are a long number). The content of the file is:
Source not found
How can I stop the IDE from breaking on this pointless file (it's dynamic, it doesn't exist in my solution). It doesn't prevent me from continuing by clicking the play button in the IDE, but I want the behaviour to stop.
thanks