我在项目A.dll
中有一个DLL名称B
。现在,我创建一个名为C
的项目(C#库),该项目引用了A.dll
的某些功能。我编译了C并将其dll(C.dll
)复制到项目B
中,并添加了对它的引用。现在,当我尝试编译项目B
时,出现错误Cannot embed interop types from assembly 'c:\Users\Desktop\Properties\C.dll' because it is missing either the 'ImportedFromTypeLibAttribute' attribute or the 'PrimaryInteropAssemblyAttribute' attribute"
。
请帮助我解决这个问题。