I'm trying to install the following packages with NuGet on Visual Studio 2010
TweetSharp version 2.3.1 (which requires Newtonsoft.Json version 5.0.6)
SharpMap version 1.1.0 (which requires Newtonsoft.Json version 4.5.11)
using the following simple NuGet commands:
PM> Install-Package TweetSharp
PM> Install-Package SharpMap
however I'm getting the following dependencies error after installing the second package:
Install failed. Rolling back...
Install-Package : Updating 'Newtonsoft.Json 5.0.6' to 'Newtonsoft.Json 4.5.11' failed. Unable to find a version of 'TweetSharp' that is compatible with 'Newtonsoft.Json 4.5.11'.
At line:1 char:16
+ Install-Package <<<< SharpMap
+ CategoryInfo : NotSpecified: (:) [Install-Package], InvalidOperationException
+ FullyQualifiedErrorId : NuGetCmdletUnhandledException,NuGet.PowerShell.Commands.InstallPackageCommand
is there anyway to fix this issue? thanks in advance.