首页 > 学院 > 开发设计 > 正文

bindingredirect 没有效果

2019-11-17 01:57:06
字体:
来源:转载
供稿:网友

bindingredirect 没有效果

在搞在线聊天室的时候用到了SignalR 1.1.4,依赖于Newtonsoft.Json 4.5.0.0。

而我另外的dll又依赖Newtonsoft.Json 6.0.0.0

我只引用6.0.0.0的时候提示找不到4.5.0.0的dll,

搜了一下用bindingredirect ,但是搞半天还是报同样的错误,后面发现是配置写错了。

错误的配置:

      <dependentAssembly>        <assemblyIdentity name="Newtonsoft.Json" PublicKeyToken="30ad4fe6b2a6aeed"  culture="neutral" />        <bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />      </dependentAssembly>

正确的配置:

      <dependentAssembly>        <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed"  culture="neutral" />        <bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />      </dependentAssembly>

万能的vs编译器木有告诉我,我哪里写错了。

搜这里知道的:http://stackoverflow.com/questions/3490327/assembly-binding-redirect-does-not-work


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表