Has anyone found a way to trigger Razor (content) pages to reload while running in release mode? If there is a command that can load them, I can create a wrapper service. Would like to be able to save new cshtml changes without restarting the app… Thanks!
You want to explicitly set: Plugins.Add(new RazorFormat { EnableLiveReload = true }); which is enabled by default when in DebugMode.
Sir Thomas:
Excellent ! Thank you