I have a project I have been working on using Xamarin's MonoDevelop.
I have been using Newtonsoft's Json nuget package.
I just downloaded Visual Studio 2017 for Mac.
I try to build my project in VS2017Mac and get the following error:
error CS0433: The type 'JsonConvert' exists in both 'Newtonsoft.Json, Version=9.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed' and 'System.Net.Http.Formatting, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'
I thought I should be able to fix that by just adding Newtonsoft.Json. to the front of JsonConvert, but that didn't work.
I don't want to remove Newtonsoft's implementation if possible because I think their library still has more functionality. Is there another way to resolve this? Why didn't adding the full assembly reference work?