XAML Hot Reload and Edit and Continue are 2 different things. It appears you are having an EnC message, not XHR. XHR is focused on changes to the XAML, not the source code. With XHR enabled then changes you make to the XAML file are pushed down so you can see them immediately (basically like web apps work). EnC kicks in for source code changes. With EnC when you make a source code change the changes are recompiled and the existing code in memory is patched so your changes are seen without restarting the debugger. But EnC cannot swap out all changes so there are some changes that require you to restart the debugger. That is what the message you're getting is saying. You have made a change that EnC cannot patch and therefore you have to restart the app before they take effect. The current list of things that can be patched is discussed here.
Note in your XHR configuration you are using full page mode but Changes Only
is the recommended approach as discussed here. You should review those docs to ensure you have configured XHR properly as there is also a debugger setting that needs to be set for Xamarin (at least based upon the docs).
Thanks Jarvan
i got the impression that Hot Reload would reload C# code changes which was one of the main reasons I migrated to VS 2022.
Never mind :-)
My pleasure.