如何在 64 位中调试 Visual Studio

发布于 2024-12-11 05:50:41 字数 119 浏览 0 评论 0原文

好的,创建应用程序后我希望它兼容 64 和 32 位系统。默认情况下,Visual Studio 调试 x86(32 位)中的应用程序。那么如何在 x64 中针对 64 位系统进行 Visual Studio 调试。 谢谢。

OK, after creating an application I want it to be compatible for 64 and 32 bit systems. By default Visual Studio debugs applications in x86 (which is 32-bit). So how can I make Visual Studio debug in x64, for 64-bit systems.
Thanks.

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

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

发布评论

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

评论(1

安稳善良 2024-12-18 05:50:41

不确定是什么语言,但如果是 C# ...

C# 项目的默认生成设置是 Visual Studio 2010 中调试模式下的 x86 生成。要在 64 位中进行调试,您只需将生成设置更改为 64 位即可。

  • 右键单击项目并选择属性
  • 切换到构建选项卡
  • 将“平台目标”更改为 x64

Not sure what language but if it's C# ...

The default build setting for C# projects is an x86 build in debug mode in Visual Studio 2010. To debug in 64 bit you simple need to change the build setting to 64 bit.

  • Right click on the project and select properties
  • Switch to the build tab
  • Change "Platform Target" to x64
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文