码迷,mamicode.com
首页 > 其他好文 > 详细

Could not load file or assembly ‘xxx’ or one of its dependencies. The located assembly's manifest definition does not match the assembly reference.

时间:2014-10-22 00:52:02      阅读:214      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   os   sp   div   on   问题   

在写aspx web application时,我们有时会遇到这个问题。很多情况都是由于在线安装的Package引起的。系统尝试去找某一个version的dll,但是你却更新了最新的Package,造成不兼容。

解决办法就是检查web.config里如下类似的代码,并手动指定version,并安装或加载你想要version的dll即可。

<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="Microsoft.IdentityModel.Clients.ActiveDirectory" publicKeyToken="31bf3856ad364e35" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-2.11.0.0" newVersion="2.2.0.0" />
      </dependentAssembly>
    </assemblyBinding>

上面这个例子手动指定我想要系统加载Version为2.2.0.0的dll,在Reference里添加时注意也要添加相同版本的dll。

Could not load file or assembly ‘xxx’ or one of its dependencies. The located assembly's manifest definition does not match the assembly reference.

标签:style   blog   color   io   os   sp   div   on   问题   

原文地址:http://www.cnblogs.com/chunyih/p/4042052.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!