I am using a TwitchLib reference and uses Newtonsoft.Json 7.0.0. Every time I got to the page that calls Twitch lab I get the following error.
Could not load file or assembly 'Newtonsoft.Json, Version=7.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed'
I have Newtonsoft.Json, Version=9.0.0.1 installed in my project.
I have added this to my config to try and resolve the issue.
<dependentAssembly>
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-7.0.0.0" newVersion="7.0.0.0" />
</dependentAssembly>
How can I resolve this issue?