I am trying to update all my pre-existing PCL libraries in .NETStandard portable libraries (using Visual Studio 2017) and found this to be very annoying.
After going through the motions, I now discovered that my Xamarin.iOS project cannot reference my .NETStandard1.3 project due to something related to Microsoft.NETCore.Jit, which seems to be related to Microsoft's need. NETCore. The Portable.Compatibility library, required by another one of my packages, which is required for the NETStandard.Library library.
Should I be able to reference this package in Xamarin.iOS? I run fully updated software on Mac and use Xamarin Studio there.
Error in Xamarin:
Failed to install package "Microsoft.NETCore.Jit 1.0.2". You are trying to install this package into a project whose purpose is "Xamarin.iOS, Version = v1.0", but the package does not contain any assembly links or content files that are compatible with this framework. For more information, contact the author of the package.
source
share