NuGet 可以分发 COM dll 吗?
是否可以使用 NuGet 来分发 COM DLL?
我将如何设置包?
我想我可以将 DLL 放在 Tools 目录中,然后运行安装后脚本来注册该库,但我不太擅长 PowerShell。
是否有任何在线示例说明如何执行此操作(如果可能)?
Is it possible to use NuGet to distribute a COM DLL?
How would I setup the package?
I'm thinking that I could put the DLL in the Tools directory, then run a post-install script to register the library, but I'm not very good at PowerShell.
Are there any online examples of how to do this (if its possible)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当我遇到类似的问题时,我创建了一个具有以下结构的 NuGet 包。
MYCOMLib.dll 是从 mycom.dll 生成的互操作 DLL,其 类型库导入器 (tlbimp.exe)。
只需使用以下命令即可完成此操作:
install.ps1 包含以下代码:
该脚本的作用是注册 COM dll 并将引用上的 EmbedInteropTypes 属性设置为 false,这在使用 .NET 4 时是必需的。请参阅< a href="https://stackoverflow.com/questions/2483659/interop-type-cannot-be-embedded">无法嵌入互操作类型了解更多信息。
When I faced a similar problem I created a NuGet package with the following structure.
The MYCOMLib.dll is a interop DLL generated from the mycom.dll with the Type Library Importer (tlbimp.exe).
This is simply done with the command :
The install.ps1 contains the following code:
What this script does is that it registers the COM dll and sets the EmbedInteropTypes property on the reference to false, which is necessary when using .NET 4. See Interop type cannot be embedded for more information.