'VS Hot Reload Is Not Working in NET Core 5
I have a .NET Core 5 MVC web application, using IIS Express to run locally during development. I'm using VS Community 2019 v16.11. The hot reload function does not work when I apply basic changes to cshtml views etc. Any ideas?
Solution 1:[1]
I had similar problem with Hot Reload in VS, I found out that it was caused by trying to Debug the application and also doing hot reloading at the same time. Hot reload did not work at all for blazor apps specifically (in my case) that I found from microsoft documentation : https://docs.microsoft.com/en-us/aspnet/core/test/hot-reload?view=aspnetcore-6.0.
So for me solution was that I started application without debug mode then After hot reload started working.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Manektech Knowledge Base |
