Basic conflict.

SignalR wants Newtonsoft.Json version 4.0.7 or higher while RavenDB wants version equal to 4.0.5. Which obviously means they can't be installed side by side.

So aside from downloading the source code from one of them and getting the dependencies figured out locally then have to check in the binary created from that, is there a possible way to keep the dependencies managed with NuGet, and maybe just forward the DLL Calls (like Mvc does with each new version for example)?

link|improve this question
Run into this one as well. According to nuget version number spec newtonsoft.json 4.0.8 should be compatible with 4.0.5. Either RavenDb or Newtonsoft.Json is doing something wrong. Really annoying. – TT. Feb 21 at 2:05
1  
Note that RavenDB now supports 4.0.8 – Ayende Rahien Feb 21 at 10:02
Thats great ..wait a few days and all your problems are solved :) – dasheddot Feb 21 at 10:05
@AyendeRahien Excellent. Still interested in what can be done if this comes up again. I saw the rollback on the 4.0.6 update so figured it might be a bit of time in updating to 4.0.8 (seems I was wrong :) ) – Rangoric Feb 21 at 14:16
feedback

2 Answers

up vote 1 down vote accepted

We were running into the same issue a few days ago and this is a nasty one. We found that you can't keep the dependencies managed with NuGet. Instead, we have changed SignalR to use 4.0.5 and compiled it locally.

link|improve this answer
Yeah SignalR is definitely the one I would end up doing locally. – Rangoric Feb 21 at 0:53
feedback

There is even a more appropriate way to work around this conflict. Since .NET gives us the possiblity to redirect assemblies, why not use it ;)

You can just add something like that to your App.config (take care if there is already an assemblyBinding placed):

  <runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
         <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
         <bindingRedirect oldVersion="0.0.0.0-4.0.8.0" newVersion="4.0.5.0" />
      </dependentAssembly>
    </assemblyBinding>
  </runtime>

With this redirect set you can simply add the RavenDB package and the SignalR package (each of them referring to an other version of JSON.NET) and it does the fix.

Additionally i did an pull request on SignalR to request support for JSON.NET in version 4.0.5 too (since it should be backward compatible)

link|improve this answer
3  
Awesome. Didn't know the redirect thing... – Daniel Lang Feb 21 at 10:44
Redirect is quite dengerous. For example when we redicrected to user newver version of Json.NET RavenDb started to miss fields with Guids in documents. – Mike Chaliy Feb 21 at 13:30
I'll have to look at this later, but I can't install both packages. So are you saying NuGet recognizes the redirect and will load packages accordingly? Or is there a certain order I would need to do this? (If this comes up again. – Rangoric Feb 21 at 14:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.