shorepound
shorepound

Reputation: 48

Unable to resolve dependency 'JSON.NET'

I am trying to install the package Twilio.Client on my machine for an upcoming project, but I keep getting the following error:

Unable to resolve dependency 'JSON.NET'

I also tried using the PM Console but got the same dependency error. Where do I need to be looking to manually resolve this dependency? I checked the packages.config file and there aren't any json packages. I tried installing json.net from nuGet but that didn't work either. I'm pretty much at a loss here. I would really like to use this library. Thank you all.

Upvotes: 0

Views: 1717

Answers (2)

Sean Wang
Sean Wang

Reputation: 780

Seems like something wrong with the latest version. 3.5.1 works as of now. You can use this to install and use the Twilio client library.

Use this in the PM console: Install-Package Twilio.Client -Version 3.5.1

Upvotes: 2

Dutts
Dutts

Reputation: 6191

JSON.Net is contained in the package called Newtonsoft.JSON, check it out here

Upvotes: 0

Related Questions