Xamarin 包未安装。我缺少什么设置

Xamarin Package(s) aren't installing. What setting am I missing

我在理解如何设置 "target framework .NET portable" 时遇到问题 我正在为 MAC.

使用最新版本的 visual studio

这是我收到的警告信息。我很难理解我缺少的设置

Checking compatibility for Rx-PlatformServices 2.3 with .NETPortable,Version=v4.5,Profile=Profile259.
Package Rx-PlatformServices 2.3.0 is not compatible with portable45-net45+win8+wp8+wpa81 (.NETPortable,Version=v4.5,Profile=Profile259). Package Rx-PlatformServices 2.3.0 supports:
  - net40 (.NETFramework,Version=v4.0)
  - net45 (.NETFramework,Version=v4.5)
  - portable-net40+sl5+win8+wp8 (.NETPortable,Version=v0.0,Profile=Profile136)
  - portable-net45+win8+wp8 (.NETPortable,Version=v0.0,Profile=Profile78)
  - sl5 (Silverlight,Version=v5.0)
  - win8 (Windows,Version=v8.0)
  - wp71 (WindowsPhone,Version=v7.1)
  - wp8 (WindowsPhone,Version=v8.0)

PCL 设置

Rx-PlatformServices 2.3 NuGet 包不支持PCL配置文件 259。

简单的解决方案

将您的 PCL 个人资料更改为 Profile78

推荐的解决方案

删除 PCL 项目并创建一个新的 Netstandard 2.0 项目来替换它。

Netstandard 相对较新,它取代了现在已弃用的 PCLs。