如果项目中引用了其他没有源码的dll文件,并且此dll文件是没有强名称的程序集,则编译时会出现类似 "Assembly generation failed -- 引用的程序集 'xxxxxxxxxxx' 没有强名称" 这样的错误。
我这里引用的是Interop.Scripting.dll程序集,它不是强名称的,则需要进行以下操作:1.打开SDK 命令提示窗口;2.创建一个新的随机密钥对:sn -k Interop.Scripting.snk3.反编译目标程序集ildasm Interop.Scripting.dll /out=Interop.Scripting.il3.重新编译,附带强命名参数ilasm Interop.Scripting.il /dll /resource=Interop.Scripting.res /key=Interop.Scripting.snk /optimize4.验证签名信息sn -v Interop.Scripting.dllOK,将生成的dll文件重新引入到项目中然后编译