我可以让 Visual Studio 将调试 DLL 创建为 XXXd.DLL 而不是 XXX.DLL 吗?

发布于 2024-09-10 19:17:48 字数 80 浏览 2 评论 0原文

我已经找到了解决方案,但它仅在您使用 .DEF 文件时才有效(我不使用)。

我想知道这是否可以在没有 .DEF 文件的情况下完成。

I have found a solution for this, but it only works if you use .DEF files (I don't).

I wonder if this can be done without .DEF files.

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

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

发布评论

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

评论(2

靑春怀旧 2024-09-17 19:17:48

项目>属性。然后配置属性>链接器>一般>输出文件。这里你应该有类似的东西: $(OutDir)\$(ProjectName).dll 只需放入 $(OutDir)\$(ProjectName)d.dll

Project > Properties. Then Configuration Properties > Linker > General > Output file. Here you should have something like: $(OutDir)\$(ProjectName).dll just put $(OutDir)\$(ProjectName)d.dll

猫九 2024-09-17 19:17:48

由于您使用的是 Visual Studio,因此可以通过项目的属性页设置输出文件路径:

Properties -->链接器 -->一般-->输出文件

Since you are using Visual Studio, you can set the output file path through the project's property pages:

Properties --> Linker --> General --> Output File

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