Nant COM 参考

发布于 2024-11-17 22:11:00 字数 646 浏览 2 评论 0原文

我正在尝试找到包含 COM 引用的 Nant 语法。

当前带有普通 dll 引用的 Nant 脚本看起来像....

<references>
    <include name="${external-lib}/System.Interop.AppName.dll" />

csproj 文件中的 COM 引用看起来像这样...

<COMReference Include="System.Interop.AppName">
  <Guid>{00020813-0000-0000-C000-000000000046}</Guid>
  <VersionMajor>1</VersionMajor>
  <VersionMinor>7</VersionMinor>
  <Lcid>0</Lcid>
  <WrapperTool>primary</WrapperTool>
  <Isolated>False</Isolated>
</COMReference>

我应该在 Nant 中使用什么语法来交换到 COM 引用来进行构建?

I'm trying to find the Nant syntax for including a COM reference.

The current Nant script with the normal dll reference looks like ..

<references>
    <include name="${external-lib}/System.Interop.AppName.dll" />

The COM reference in the .csproj file looks like this ...

<COMReference Include="System.Interop.AppName">
  <Guid>{00020813-0000-0000-C000-000000000046}</Guid>
  <VersionMajor>1</VersionMajor>
  <VersionMinor>7</VersionMinor>
  <Lcid>0</Lcid>
  <WrapperTool>primary</WrapperTool>
  <Isolated>False</Isolated>
</COMReference>

What syntax should I use in Nant to swap to the COM reference to do the build ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

醉生梦死 2024-11-24 22:11:00

使用 tlbimp(nant 任务)并引用生成的程序集。

Use tlbimp (nant task) and reference the generated assembly instead.

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