Consider we have developed a MAUI application, for deployment of this MAUI application in multiple windows machine, we created a setup file / package following this link - https://github.com/dotnet/docs-maui/blob/main/docs/windows/deployment/publish-visual-studio-folder.md
Suppose we created a package with version 1.0.0 and got it installed in various machines. Now we want to release a new version of our application 1.0.1.
Is there any way using which Auto update of the application can happen during application start? We tried to use installer location concept from above link where we put the server's link and put the complete package on that link but during application start Auto update does not happen. Please guide us if there is any way for Auto update in MAUI.
This is what we have tried --> https://github.com/dotnet/docs-maui/blob/main/docs/windows/deployment/publish-visual-studio-folder.md
We tried putting the package on server and gave that link as a installer location : e.g I have put the package on server on path - https://www.example.com/MAUI and then opened the old version 1.0.0, the application did not auto update.
Also tried giving local path - D:/MAUI/{package files} but still auto update did not happen.