英文:
Can I publish x64 .msix bundle in x86 OS?
问题
我制作了一个通用的Windows平台应用程序。我想要发布这个应用。我的操作系统是x86,我想要发布到x64。这是否可行?
英文:
I made a Universal Windows Platform application. I want to publish this app. My operating system Is x86 and I want to publish to x64. Is this possible?
答案1
得分: 2
通常情况下,这是不可能的,32位操作系统与64位程序集不兼容。以前曾经有一些方法可以通过修改一些配置来实现这一点。但我不建议这样做。
我的建议是,您可能需要在您的设备上创建一个带有64位操作系统的虚拟机,然后在虚拟机中进行工作。当然,最好是使用一个真实的64位操作系统设备。毕竟,在发布之前完全测试您的应用程序始终是最佳实践。
英文:
Generally, this is not possible, 32-bit OS is not compatible with 64-bit assemblies. There used be some ways to do this before by modifying some configuration. But I don't recommend this.
My suggestion is that you might need to create a VM with 64-bit OS on your device and then do the work in the VM. Of course, it's better to get a real device with 64-bit OS. After all, it's always the best practice to test your app completely before you publish.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论