Why does page not update after refresh when .cshtml changes

后端 未结 4 963
礼貌的吻别
礼貌的吻别 2020-12-08 10:09

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

4条回答
  •  囚心锁ツ
    2020-12-08 10:24

    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

提交回复
热议问题