Is it safe to manually generate .appxsym and .appxupload for Windows Store Apps crash analysis?

﹥>﹥吖頭↗ 提交于 2020-01-02 05:17:07

问题


We have an app with a manual packaging process (MakeAppx.exe). We would like to publish this app to the Store including the public symbols files, so that I can download the .cab process dump file for crash analysis (such as described here).

I understand the .appxupload is a zip-file contaning the .appx package and an .appxsym file, which in turn is a .zip file containing the .pdb files (also according to MSDN).

Is it safe to manually generate/edit these .appxsym and .appxupload for publishing?


回答1:


Yes. This is fine. As you note, the appxupload's format is documented as being a zip archive containing the .appx and .appxsym files, and the .appxsym file is a compressed file with the app's public symbols. The appx and its creation is documented in App packages and deployment

Generating this yourself or generating it through VS will give essentially identical results, barring differences in the appxupload's contents (most likely different appx options or processing).



来源:https://stackoverflow.com/questions/23687542/is-it-safe-to-manually-generate-appxsym-and-appxupload-for-windows-store-apps

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