Hi, I am using the latest Dropbox API 5.5.0 in my C# project, I have Newtonsoft.Json 12.0.3 installed (as the dependency says Newtonsoft.Json (>= 7.0.1)). When I try to get the Access Token, I receive this error
Could not load file or assembly 'Newtonsoft.Json, Version=6.0.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)
In my app config, I have this
<dependentAssembly>
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-12.0.0.0" newVersion="12.0.0.0" />
</dependentAssembly>
I can't downgrade my Newtonsoft.Json to version 6.0.0.0 because other packages require version 12.0.3. Is there any solution for this?