manickam
manickam

Reputation: 61

How to create UWP setup installer like Windows Build

How to create the setup installer for the UWP application. For the desktop application. Please advice

Upvotes: 6

Views: 5859

Answers (1)

Stefan Wick  MSFT
Stefan Wick MSFT

Reputation: 13850

The .appx package that VS produces for your UWP project is your installer. You can double-click the file, which will launch the built-in installer. In other words, with UWP the installer tech is already built into Windows.

Outside of VS, you can also use the makeappx SDK tool to produce an .appx package for your application.

https://learn.microsoft.com/en-us/windows/uwp/packaging/packaging-uwp-apps

Upvotes: 5

Related Questions