There are actually 6 different versions in that NuGet package, you'll see this if you look at packages/Microsoft.Net.Http.2.2.18/lib - each of the directories in there contains a different version. N… (View Post)
Hmm, I actually vaguely remember having seen something like that back in December. It seemed to happen with PCL NuGets that reference stuff that's not available on iOS. So it's the linker which is re… (View Post)
When using JSon.NET in a PCL for iOS, you must not use any combinations of target frameworks which include ".NET Framework 4.5". This has been fixed in recent versions of the NuGet plugin a… (View Post)
That is Mono's open-source implementation of System.Net.HttpClient, which is available in Xamarin.Android and Xamarin.iOS, simply add a reference to System.Net.Http to use that. However, we ship this… (View Post)
A normal library is compiled against a specific version of the .NET Framework and references a specific version of mscorlib.dll and other base-class libraries both at compile and run-time. You can't … (View Post)