Combining a MAUI App and WPF Updater into a Single MSIX Package?
Hey everyone! I’m working on a .NET project and I have a question about packaging. I have a MAUI app that I want to distribute as an MSIX package. I also have a separate WPF app that acts as an updater for the MAUI app (it checks for updates and installs them). Is it possible to combine both apps into a single MSIX package, so they can be installed together? Any tips or best practices?
2 Replies
@AchSteff the msix could just update itself https://learn.microsoft.com/en-us/windows/msix/non-store-developer-updates
Update non-Store published apps from your code - MSIX
Describes how MSIX packages shipped outside the Store can be updated by developers in code.
Oh, big thanks !