Hot Reload Support
Build, tweak, and iterate without leaving your running console app.
RazorConsole supports hot reload via its metadata update handler so UI changes are reflected instantly—no restart required.
How it works
- Run your application with
dotnet watch. - Update a Razor component.
- Save the file.
- Watch the running console UI refresh automatically.
dotnet watch runTip: Hot reload shines for component tweaks. Certain structural changes may still need a full restart.