Reputation: 857
I tried to add Microsoft.Rest.ClientRuntime v2.3.10 via Nuget to a standard Xamarin PCL project and got following error:
Could not install package 'Microsoft.Rest.ClientRuntime 2.3.10'. You are trying to install this package into a project that targets '.NETPortable,Version=v4.5,Profile=Profile111', but the package does not contain any assembly references or content files that are compatible with that framework.
The targets for the project as as follows:
Upvotes: 0
Views: 252
Reputation: 857
Solution was just to install version 2.0.0 of Microsoft.Rest.ClientRuntime, which is portable.
Upvotes: 0