You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I use RequireJsNet.ResxToJs in my application I get the following error:
Could not load file or assembly 'Newtonsoft.Json, Version=9.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed' or one of its dependencies
If I use Newtonsoft.Json version 9.0.1 it works, but I have other dependencies that require version 10+.
Can you help me, please?
The text was updated successfully, but these errors were encountered:
I have the same issue. I am thinking it's not an issue of RequireJsNet.ResxToJs rather than MSBuild.
If you follow the instruction you have to add ResxtoJS.targets <UsingTask TaskName="ResxToJsTask" AssemblyFile="..\bin\RequireJsNet.ResxToJs.dll" />
Looks like MSBuild try to load Newtonsoft.Json version 9.0.1 while your solution has a different one.
To resolve it you can clone that repository, update RequireJsNet.ResxToJs to use the same version of Newtonsoft.Json as your solution has, and use your custom DLL.
Hi Guys!
I have an application ASP.NET MVC .NET Framework 4.5.1 with the following reference:
..\packages\Newtonsoft.Json.10.0.3\lib\net45\Newtonsoft.Json.dll
When I use RequireJsNet.ResxToJs in my application I get the following error:
Could not load file or assembly 'Newtonsoft.Json, Version=9.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed' or one of its dependencies
If I use Newtonsoft.Json version 9.0.1 it works, but I have other dependencies that require version 10+.
Can you help me, please?
The text was updated successfully, but these errors were encountered: