美好的一天。我正在尝试在Visual Studio 2015中的此处安装OxyPlot NuGet软件包。但是,我这样做没有成功。我将在Xamarin.Forms可移植应用程序中创建饼图时使用它。

首先,我安装了OxyPlot.Core v1.0.0-unstable2100,然后安装了OxyPlot v1.0.0-unstable2100,但是当我尝试安装最后一个需要安装的文件是OxyPlot.Xamarin.Forms时,它提示错误提示


  找不到与'OxyPlot.WindowsForms 1.0.0-unstable2100约束兼容的'OxyPlot.Core'版本:OxyPlot.Core(= 1.0.0-unstable2100)','OxyPlot.Wpf 1.0.0-unstable2100约束: OxyPlot.Core(= 1.0.0-unstable2100)','OxyPlot.Xamarin.Forms 1.0.0-unstable1983约束:OxyPlot.Core(= 1.0.0-unstable1983)'。


您认为这背后的原因是什么?

安装OxyPlot程序包时要遵循的命令吗?首先需要安装哪个软件包?

谢谢你的帮助。

最佳答案

关于NuGet,无需按特定顺序安装任何东西。所需的任何依赖项都将自动下载。换句话说,当您将OxyPlot.Xamarin.Forms-程序包添加到项目中时,也会添加OxyPlot.Core的更正版本。

也可以在正式的nuget.org NuGet feed上找到OxyPlot.Xamarin.Forms -package,但是由于它是prerelease,请确保已在Visual Studio的Manage NuGet Packages窗口中选择Include Prerelease选项。

我刚刚测试过,它似乎可以工作。祝好运!

10-04 12:32