I am trying out Blazor and i do not understand why when changing a component after refreshing the browser page it does not update ? Shouldn\'t the
Blazor
component
I guess you are running the app with the debugger connected? this prevents the recompilation. You need to:
Press Ctrl-F5 to run the app without the debugger. Running with the debugger (F5) isn't supported at this time.
https://github.com/dotnet/aspnetcore/issues/5456