Newtonsoft.Json Error ( Solved )

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
9 years ago
Hello,

Does anyone knows , how can i fix it ?

Error while running the 'Standart.Import' schedule task. 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)


Thank You :)
9 years ago
Let check if  '/Bin/Newtonsoft.Json.dll' exist
9 years ago
I solved :

Change my web.config file with below lines.


      <dependentAssembly>
        <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral"/>
        <bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="4.5.0.0" />
      </dependentAssembly>
9 years ago
I solved :

Change my web.config file with below lines.


      <dependentAssembly>
        <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral"/>
        <bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="4.5.0.0" />
      </dependentAssembly>
9 years ago
cool!
7 years ago
I solved it by updating the nuget package to the newest version.
The problem was that the application was expecting a newer version.
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.