托管 C++:如何让我的非托管版本号与我的程序集版本号相匹配
我有一个托管的 C++ 项目。
如何使 DLL 的版本信息(在资源管理器中看到并由安装程序使用)与程序集版本属性中生成的版本信息相匹配?
AssemblyInfo.cpp:
[assembly:AssemblyVersion("5.1.*")];
讨论了该问题 此处。
I have a managed c++ project.
How do I make the version information of the DLL (as seen in explorer and used by installers) match the version information generated in the Assembly Version atttribute?
AssemblyInfo.cpp:
[assembly:AssemblyVersion("5.1.*")];
The problem is discussed here.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
还要设置 AssemblyFileVersionAttribute 和 AssemblyInformationalVersionAttribute。
Also set the AssemblyFileVersionAttribute and AssemblyInformationalVersionAttribute.