Reputation: 77
When installing Xamarin.Auth
to my project with NuGet, I get this error:
Could not install package 'Validation 2.0.4.14103'. You are trying to install this package into a project that targets 'Xamarin.iOS,Version=v1.0', but the package does not contain any assembly references or content files that are compatible with that framework. For more information, contact the package author.
Upvotes: 1
Views: 470
Reputation: 1768
This is because the NuGet dependency behaviour is set to 'lowest' and Validation 2.0.4.14103
is not compatible with Xamarin.iOS,Version=v1.0
Here is a workaround:
Install the Validation
NuGet package first, using the latest version 2.3.7
.
Then install Xamarin.Auth
, and it should work as expected without the error.
Upvotes: 4