Oxyplot 添加参考
Oxyplot adding reference
我尝试按照以下link开始学习OxyPlot我使用"Manage NuGet Packages..."添加了参考。然而,
using OxyPlot;
仍带下划线(找不到类型或名称空间 'OxyPlot'...)
我试过包管理器控制台按照建议添加参考:
PM> Install-Package OxyPlot.Wpf
但是回来了
Attempting to resolve dependency 'OxyPlot.Core (= 2014.1.546)'.
OxyPlot.Wpf 2014.1.546' already installed.
OxyPlotTesting already has a reference to 'OxyPlot.Wpf 2014.1.546'.
有什么想法吗?
我认为这可能是您的问题:
- 当您通过 NuGet 添加 OxyPlot 时,您需要 "OxyPlot for WPF" 和 "OxyPlot core library",因为 WPF扩展依赖于核心,只是添加了 WPF 集成。您可能只添加了 "OxyPlot for WPF",这就是您找不到 oxyplot 命名空间的原因。
- 您的 "already installed" 错误可能是 "You have already added this in NuGet, and now you are trying to install it again through command line"。
希望对您有所帮助!
我尝试按照以下link开始学习OxyPlot我使用"Manage NuGet Packages..."添加了参考。然而,
using OxyPlot;
仍带下划线(找不到类型或名称空间 'OxyPlot'...)
我试过包管理器控制台按照建议添加参考:
PM> Install-Package OxyPlot.Wpf
但是回来了
Attempting to resolve dependency 'OxyPlot.Core (= 2014.1.546)'.
OxyPlot.Wpf 2014.1.546' already installed.
OxyPlotTesting already has a reference to 'OxyPlot.Wpf 2014.1.546'.
有什么想法吗?
我认为这可能是您的问题:
- 当您通过 NuGet 添加 OxyPlot 时,您需要 "OxyPlot for WPF" 和 "OxyPlot core library",因为 WPF扩展依赖于核心,只是添加了 WPF 集成。您可能只添加了 "OxyPlot for WPF",这就是您找不到 oxyplot 命名空间的原因。
- 您的 "already installed" 错误可能是 "You have already added this in NuGet, and now you are trying to install it again through command line"。
希望对您有所帮助!