I have created package for my universal windows platform application.But I am not able to find where the .appx file is generated for my package. It has generated .appxbundle file and all the other files.But .appx file is not generated.
3 Answers
1
votes
An .appx is just a zip64 file, and a .appxbundle is a zip file containing such zip files.
If you use makeappx.exe you can extract all the files inside your .appxbundle and see the individual .appx files within.
MakeAppx unbundle /p bundle_name.appxbundle /d output_directory
See App packages and deployment (Windows Runtime apps) and App packager (MakeAppx.exe)
1
votes
