MAUI hot reload on Windows Machine
Hot reload worked on the Android emulator, but not the Windows 10 application.
The solution was to add this build property to the .csproj
<PropertyGroup>
<DisableXbfLineInfo Condition="'$(ConfigurationName)' != 'Release'">false</DisableXbfLineInfo>
</PropertyGroup>