Getting started with application packaging in Visual Studio
In the previous chapter, we saw how App Center could automatically create and deploy application packages. Now, we will see how we can manually package our applications with Visual Studio. Visual Studio 2019 includes two WinUI project templates capable of creating MSIX deployment packages, outlined as follows:
- Blank App (WinUI in UWP): Creates a WinUI project with a
package.appxmanifest
file for generating an MSIX package - Blank App, Packaged (WinUI in Desktop): Creates a solution with two projects—a desktop WinUI project and a packaging project that contains the
package.appxmanifest
file
We are going to work with the WinUI in UWP MyMediaCollection solution again. You can either use your own solution from previous chapters or download a copy from this chapter's GitHub repository at https://github.com/PacktPublishing/-Learn-WinUI-3.0/tree/master/. Let's see how to generate an MSIX package...