I have been developing a MAUI Blazor Hybrid Desktop Application for Windows. I want to configure automatic/self-updates for that application. I have followed the publish via Visual Studio Code Instructions.
Followed the steps as is, for the Installer location field in the publish wizard, I entered a public s3 bucket URL which will contain the future versions of the application. The URL looks like this.
https://<bucket-name>.s3.us-east-1.amazonaws.com/blazor-application
After installing the application, I generated another version with the incremented version and posted the contents of the output folder to the s3 bucket. I closed the running application and started it again, but the auto update did not seem to work.
I found that the application needs a .appinstaller file configured with the update settings, but my understanding is that the file is automatically created by visual studio when publishing. Is that correct?
Another post suggested that the application should be installed in the root folder to receive updates, but upon installation I see no options to install on a specific location.
Any help is appreciated, please point me to the correct resources.