将应用程序从 32 位机器迁移到 64 位机器时,我们是否需要再次构建应用程序?

发布于 2024-09-16 05:50:28 字数 71 浏览 5 评论 0原文

考虑一个应用程序是在 32 位机器上构建的。现在我想在 64 位机器上移动应用程序。我需要在 64 位机器上再次重建应用程序吗?

Consider an application is built on 32 bit machine. Now I want to move application on 64 bit machine. Do I need to rebuild application once again on 64 bit machine?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

素手挽清风 2024-09-23 05:50:28

你不需要。

.net 框架既有 32 位也有 64 位,并且都在 64 位 Windows 上运行。这是因为 64 位 Windows 可以通过“模拟”32 位操作系统来运行 32 位(x86)。

您的程序集在构建时被标记为 32 位、64 位或“任何 CPU”。任何 CPU 版本都将在 64 位 Windows 上的 64 位框架中运行,在 32 位 Windows 上运行在 32 位框架中。

如果您将构建标记为 32 位,则需要的测试量最少。

You don't need to.

There is both a 32 bit and 64 bit .net framework, and both run on 64 bit windows. That is because 64 bit windows can run 32 bit(x86) by "emulating" a 32 bit OS.

Your assembly is labeled at build time as either 32 bit, 64 bit, or "Any CPU". Any CPU builds will run in the 64 bit framework on 64 bit windows, and 32bit on 32 bit windows.

The least amount of testing is required if you label your builds as 32 bit.

时间海 2024-09-23 05:50:28

不。Win

x64 完全支持 x86 版本。

如果您的程序集是为 AnyCPU 构建的,您应该测试 32 位和 64 位进程。

No.

Win x64 fully supports x86 builds.

If your assemblies are built for AnyCPU you should test for both 32bit and 64bit processes.

过去的过去 2024-09-23 05:50:28

在您在 64 位上进行测试之前,我建议仅以显式 32 位发布。我们被一个在 64 位系统上失败的第三方组件所困扰。

当然,这并不总是必要的;但客户的站点是进行首次测试的糟糕场所。

Until you've tested on 64bit, I'd recommend releasing in explicit 32bit only. We got bit by a 3rd party component that failed on 64bit systems.

It certainly isn't always necessary of course; but a customer's site is a terrible place to do a first test.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文