Xamarin软件包未安装。我错过了什么设置
问题描述:
我遇到问题了解如何设置我的“目标框架.NET便携” 我正在使用最新版本的Visual Studio for MAC。Xamarin软件包未安装。我错过了什么设置
这里是我得到的警告信息。我有一个艰难的时间,了解什么设置我缺少
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,现在已经弃用了。
+0
配置文件78运行良好。我试着将它移到Netstandard上,但有太多的其他库冲突。谢谢布兰登 –
仅供参考 - 我不推荐使用这个软件包。 Rx-Platform的所有者未列出此软件包,这可能意味着该软件包已被弃用或不应再使用。 https://www.nuget.org/packages/Rx-PlatformServices/2.3.0# –
尝试配置文件7并重新安装包 – Atul