NuGet 可以分发 COM dll 吗?

发布于 2024-11-08 05:44:01 字数 149 浏览 0 评论 0原文

是否可以使用 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 技术交流群。

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

发布评论

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

评论(1

零度° 2024-11-15 05:44:01

当我遇到类似的问题时,我创建了一个具有以下结构的 NuGet 包。

    • MYCOMLib.dll
  • 工具
    • mycom.dll
    • 安装.ps1

MYCOMLib.dll 是从 mycom.dll 生成的互操作 DLL,其 类型库导入器 (tlbimp.exe)。
只需使用以下命令即可完成此操作:

Tlbimp mycom.dll

install.ps1 包含以下代码:

param($installPath, $toolsPath, $package, $project)

regsvr32 Join-Path $toolsPath '\mycom.dll' /s

$project.Object.References | Where-Object { $_.Name -eq "MYCOMLib" } |  ForEach-Object { $_.EmbedInteropTypes = $false }

该脚本的作用是注册 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.

  • lib
    • MYCOMLib.dll
  • tools
    • mycom.dll
    • install.ps1

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 :

Tlbimp mycom.dll

The install.ps1 contains the following code:

param($installPath, $toolsPath, $package, $project)

regsvr32 Join-Path $toolsPath '\mycom.dll' /s

$project.Object.References | Where-Object { $_.Name -eq "MYCOMLib" } |  ForEach-Object { $_.EmbedInteropTypes = $false }

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.

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