Hi McMillen Buom,
It looks like there's a delay in the update detection process. By default, the .appinstaller
file is set to check for a new version every 24 hours, which can cause a significant delay for users.
To fix this issue, modify the code in your .appinstaller
file from:
<UpdateSettings>
<OnLaunch HoursBetweenUpdateChecks="24"/>
</UpdateSettings>
to:
<UpdateSettings>
<OnLaunch HoursBetweenUpdateChecks="0"/>
</UpdateSettings>
This change will make the application check for updates every time it launches.
Moreover, if the issue still persists, it's recommended to host your .appinstaller
file and installation package on an internal HTTP server instead of a network share. Hosting over HTTP ensures better reliability and compatibility with the update mechanism.
If you have any other questions, feel free to ask. Thank you!