如何避免.NET下的.dll依赖
我正在编写一个 C++/CLI,它可以访问/“依赖”许多 DLL COM 和 DLL .NET 库。
是否可以将所有这些库链接/加入到我的 C++/CLI 程序中,并仅生成一个可执行对象,这样每次我必须将对象移动到另一台计算机时,我就不再需要考虑这些依赖关系?
谢谢!!!
I am writing a C++/CLI which have access/"dependencies" to many DLL COM and DLL .NET libraries.
Is this possible to link/join all these libraries into my C++/CLI program and generate only one executable object in such a way that I never again have to consider these dependencies every time I have to move my object to another computer?
Thanks!!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ILMerge 是一种将多个托管程序集合并为一个的选项:ILMerge 最佳实践
但是,ILMerge 可能不是一个选项:
ILMerge is an option for collapsing several managed assemblies into one: ILMerge Best Practices
However ILMerge might not be an option: