I'm writing a MVC app using Rider, and a behavior bothers me: when I modify the view, I must rebuild the solution and relaunch it to see the changes. Is it possible to see the modified view directly when I reload the site from the browser?
By the way, the IDE (or dotnet?) doesn't consider a view change to be a rebuild-triggering change. I must click on "Rebuild selected project" by hand, and then I can launch the modified version of the app. Why is that?
AddRazorRuntimeCompilation
. It doesn't work, tho: I don't see the changes when I update the view. – Bump