public void ConfigureServices(IServiceCollection services) { services.AddMvc().AddRazorRuntimeCompilation(); }
Related Stack Overflow https://stackoverflow.com/questions/54600273/net-core-3-0-razor-views-dont-automatically-recompile-on-change
2. Learn To use the .NET CLI
This Command line interface provides an efficient way to access to the .NET SDK. I especially like the dotnet new command when I want to test a new idea or investigate a bug in a fresh project. The CLI can also be used to manage nuget packages, clean, build, run, and test your projects and solutions.