Forum Discussion
How to specify package type (.msix or .appx) using manual packaging tool (Makeappx.exe)
We use the following command to generate the package.
MakeAppx pack /m "MyApp\AppxManifest.xml" /f MyMapping.txt /p AppPackage.msix
What would be the difference in the makeup of the app that will result in the difference between a .msix and .appx.
As of today, is there any difference between an APPX and MSIX package OR is it just change in nomenclature.
My concern is I want to ensure I am generating the right format.
- jvintzelFeb 26, 2019Former Employee
From a packaging and deployment perspective they shared a common components. Difference start coming with modification packages. The runtime will pick up any new features based on the manifest declarations. Think of a .appx as a really restrictive MSIX file. MSIX will light up new feature sets and includes out of band items like the package support framework.
John.