防止TlbImp为引用的类型库生成互操作程序集

时间:2012-08-08 20:21:44

标签: tlbimp

我正在使用TlbImp生成互操作程序集。我的几个类型库引用了单个核心类型库。

当我针对TlbImp运行First.dll时,我得到Interop.First.dllInterop.Core.dll。问题是,当我再次运行它时,Second.dllTlbImp会再次尝试生成Interop.Core.dll,从而导致错误:

TlbImp : error TI0000 : System.ApplicationException - The assembly for referenced
type library, 'Core', will not be imported since it would overwrite existing file
'Core.dll'.

如何告诉TlbImp不为引用的程序集生成interops?

1 个答案:

答案 0 :(得分:2)

我需要使用/reference参数来明确标识现有的互操作程序集。

最初我正在运行这些命令:

> tlbimp Core.dll /out:Interop.Core.dll
> tlbimp First.dll /out:Interop.First.dll
> tlbimp Second.dll /out:Interop.Second.dll

TlbImp会尝试导入引用的Core.dll并在第二个和第三个命令中的Core.dll处创建一个互操作,从而触发错误。

要解决此问题,我只需要明确指定Core互操作:

> tlbimp Core.dll /out:Interop.Core.dll
> tlbimp First.dll /reference:Interop.Core.dll /out:Interop.First.dll
> tlbimp Second.dll /reference:Interop.Core.dll /out:Interop.Second.dll