我在visual studio中有一个项目,它有2个具有相同简单名称的dll,当我编译解决方案时出现错误:
An assembly with the same simple name 'Interop.ADODB, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null has already been imported. Try removing one of the references or sign them to enable side-by-side.
我尝试将项目的属性转到签名选项并分配一个强名称,但这只会产生其他错误,因为我引用了其他解决方案的项目并且它们没有字符串名称,但我无法更改它们的属性。我希望更改 dll 文件的名称会有所帮助,但它没有。
那么我如何才能真正签署 2 个 dll,或者如何更改其中一个文件的简单名称,以便编译解决方案?