everydayXpert
everydayXpert

Reputation: 857

Microsoft.Rest.ClientRuntime can not be installed in Xamarin PCL Project

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:

enter image description here

Upvotes: 0

Views: 252

Answers (1)

everydayXpert
everydayXpert

Reputation: 857

Solution was just to install version 2.0.0 of Microsoft.Rest.ClientRuntime, which is portable.

Upvotes: 0

Related Questions