I tried to add the Signalr Client Library and WebApi client to my Xamarin solution (on Visual Studio with Xamarin support, as well as on Xamarin Studio), but I always get this error, although I can install other PCLs (for example, Microsoft.Net.Http) :
Could not install package 'Microsoft.AspNet.WebApi.Client 5.2.3'. You are trying to install this package into a project that targets 'portable-net45+sl50+win+wpa81+wp80+MonoAndroid10+xamarinios10+MonoTouch10', 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.
and the following error when adding Signalr:
Adding Microsoft.AspNet.SignalR.Client... Adding 'Microsoft.AspNet.SignalR.Client 2.2.0' to Corda.Client. Could not install package 'Microsoft.AspNet.SignalR.Client 2.2.0'. You are trying to install this package into a project that targets 'portable-net45+sl50+win+wpa81+wp80+MonoAndroid10+xamarinios10+MonoTouch10', 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.
I also tried to change the target structure with failure. This is the build setup for my project: 
and this is my folder C: \ Program Files (x86) \ Reference Assemblies \ Microsoft \ Framework.NETPortable \ v4.5 \ Profile \ Profile259 \ SupportedFrameworks: 
I get the same errors on both Mac OSX and Windows 10. Any ideas?
source share