我可以让 Visual Studio 将调试 DLL 创建为 XXXd.DLL 而不是 XXX.DLL 吗?
我已经找到了解决方案,但它仅在您使用 .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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
项目>属性
。然后配置属性>链接器>一般>输出文件
。这里你应该有类似的东西:$(OutDir)\$(ProjectName).dll
只需放入$(OutDir)\$(ProjectName)d.dll
Project > Properties
. ThenConfiguration Properties > Linker > General > Output file
. Here you should have something like:$(OutDir)\$(ProjectName).dll
just put$(OutDir)\$(ProjectName)d.dll
由于您使用的是 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