我正在使用TlbImp
生成互操作程序集。我的几个类型库引用了单个核心类型库。
当我针对TlbImp
运行First.dll
时,我得到Interop.First.dll
和Interop.Core.dll
。问题是,当我再次运行它时,Second.dll
,TlbImp
会再次尝试生成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?
答案 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