我有一个连接到SignalR 2.0后端的Windows客户端,现在我也试图将它连接到ASP.NET Web API 2.1后端。
我用来与web api通信的库依赖于 Newtonsoft.Json 6.0.0.0 ,但Microsoft.AspNet.SignalR.Client 2.0.0.0似乎依赖于 Newtonsoft。 Json 4.5.0.0 。
由于这是一个Windows客户端,因此dll文件最终位于同一目录中,并且只有两个所需版本中的一个最终会出现在磁盘上,这使得signalr-client或HttpClient无法加载其版本的Newtonsoft .json dll文件。
如果6. *版本在磁盘上,SignalR错误:
Could not load file or assembly 'Newtonsoft.Json, Version=4.5.0.0,
Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed' or one of its
dependencies. The located assembly's manifest definition does not match the
assembly reference.(Exception from HRESULT: 0x80131040)
是否可以使SignalR使用较新版本的Newtonsoft,或者能够在同一解决方案中使用这两个版本?
请记住,我是Nuget包装的新手,也是SignalR似乎使用的隐式参考...
解决方案: 我用版本6.0替换了signalR客户端库中的Newtonsoft引用,并将下面由Kiran Challa编写的程序集重定向添加到库的App.config以及可执行项目的app.config中,现在两个库都在寻找并加载相同的组件。
答案 0 :(得分:19)
Web API& SignalR是参考Json.net的4.5汇编版本构建的。如果你想使用6.0版本的Json.net,你需要在配置文件中添加一个程序集绑定重定向。
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<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>