I'm building a .NET Core MVC on the latest version 2.2. I have a problem when I make changes to the CSHTML file and refresh the page, my changes are not reflected in the browser. I have to restart the project in order to see my changes. This has been happening for a while now so I'm not exactly sure what change caused this issue.
I've tried using the chrome's "Empty Cache and Hard Reload" as well as other browsers to no avail. This happens on Windows and Mac using both Visual Studio for Mac and VS Code
In a default .Net Core project it works fine so it must be something in my project that changed along the way. I'm wondering where I need to start in order to debug this issue? I've tried commenting out almost everything in my Startup.cs
and Program.cs
with no resolution.
You should just add this:
to the ConfigureService method.
Be aware below code is not available in ASP.NET Core 3.1:
Using .net core 2.2 running app with command
dotnet watch run
the project is restarted after every changeThere are two ways to resolve this issue:
1. Check the permissions of folder in which your .sln file present.There may be a problem with file access permissions as Visual studio may not be to access files when IIS express server is running, so to reflect new .cshtml changes each time you need to restart the server,so I suggest edit the folder access permissions by:
Right click on folder->properties->security->click on edit button -> check all options->save.
Restart Visual studio to see changes.
If this does not work then use 2 option.
2.In your project in startup.cs file add this below line ConfigureServices() in method :
In ASP.NET Core 3.0 (at the time of writing still in a preview!)
RazorViewEngineOptions.AllowRecompilingViewsOnFileChange
is not available (or not accessible? - had no time to check).Surprised that refreshing a view while the app is running did not work I discovered the following solution (beware, things might change in the release!):
Add the following in
Startup.cs
:services.AddControllersWithViews().AddRazorRuntimeCompilation();
Here's the full explanation for the curious...
HTH
I've just created a new project using the latest ASP.NET MVC Core 3.1 template and I altered the following to get runtime recompilation enabled for Debug:
Reference NuGet package - Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.
Startup.cs - ConfigureServices(IServiceCollection services) WAS:
NOW:
Below helped me when views were in separate project.