alina
alina

Reputation: 61

WinUI3 create installer with external msi

I'm trying to create an installer for an Winui3 app and add to it an external msi file.

So far I've tried Wix toolset and Microsoft Visual Studio Installer Projects but both create an msi file containing an exe that doesn't work. The only way that I managed to create an installer with a working launcher was by packaging the desktop application like this https://nicksnettravels.builttoroam.com/packaging-winui3-desktop/. The output is an msix file which installs and launches the app. However, I still need to install the external msi file for my app to work.

Are there any solutions for creating and exe installer containing both my project solution msix and the other msi or a way to add prerequisites to packaging the desktop app?

Upvotes: 6

Views: 1787

Answers (1)

Neeraj
Neeraj

Reputation: 11

It is better to create a package which can easily be done from Build > Pack <>

You can find the installation package path in the output window it ususally have .msix extension that can be installed on any windows 10 machine

Upvotes: 1

Related Questions