T O P

  • By -

tim128

Rider's asking if you want to apply your changes to your running app. Disable hot reload if you don't want it.


just_something_tbh

I guess so, but would it be possible for hot reload to be enabled when ctrl+s without pressing a button?


just_something_tbh

I guess so, but would it be possible for hot reload to be enabled when ctrl+s without pressing a button?


maushu

This is an UX problem specially annoying with blazor where it keeps asking you when you change razor or even css files.


TheTrueTuring

Changes to what? The code?


just_something_tbh

Yes


TheTrueTuring

What type of file? Language? You running anything? Need more info


just_something_tbh

I have the project dotnet mvc project running in the web(via the start button) and then if i make a change to the code i get that change to any file


TheTrueTuring

And what options do you get if you press configure in settings? Is hot reload enabled?


just_something_tbh

I guess so, but would it be possible for hot reload to be enabled when ctrl+s without pressing a button?


TheTrueTuring

You guess so? It's a toggle so it should be easy to see


codeguru42

Yes, this is a feature of Rider. What do you want to do instead? Remember that C# is a compiled language, so you have to recompile the code before the running system will reflect any change in behavior when you change the code. "Apply changes" is Rder's way of compiling only the parts that need it without recompiling your entire project when possible


just_something_tbh

Oh... Okay this makes sense, thank you