How to create .appx package for Universal Windows Platform(UWP) application?

。_饼干妹妹 提交于 2019-12-01 06:06:19

问题


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.


回答1:


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)




回答2:


The .appxbundle is like the name suggest a bundle of .appx files. This is actually a zip file containing .appx file.

You can choose not to create .appxbundle files but create separate .appx files if needed

Set "Generate App Bundle" to never




回答3:


You can find the appx file in the dependencies folder of the app package under the ARM folder.

AppPackages-->Dependencies-->ARM



来源:https://stackoverflow.com/questions/35547225/how-to-create-appx-package-for-universal-windows-platformuwp-application

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!