Upgrading .Net Core 2.2 to .Net Core 3.0 my browser link is become not working, anyone know how to troubleshoot.
Performing the edit cshtml and refresh the browser it didn't reflect the changes.
The workaround suggested here helps:
Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation
services.AddControllersWithViews();
by services.AddControllersWithViews().AddRazorRuntimeCompilation();
After saving you need to click the Browser Link refresh button Ctrl+Alt+Enter
but it's better than restarting the application