asp.net mvc - Nuget Requirement Conflict -


my mvc 5 project requires newtonsoft.json version 6.0 i'm using api library intuit built on newtonsoft.json verison 5.0.1 , doesn't work newer version.

is there way run both versions on same site?

you're not alone friend. have microsoft blend installed? if yes, that's 1 should blame to. blend installs newtonsoft.json dll version 5.0.1 gac , unfortunately if have nuget installed visual studio project prefers version installed in gac placed under blend's installation directory under program files.

resolution: not recommended, should needful. change path of installed blend.

e.g. blend's installation path is:

c:\program files(x86)\microsoft blend\.... 

rename

 c:\program files(x86)\microsoft blend_unused\....  

this give quick fix. issue been reported microsoft connect site.


Comments

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -