I am using Visual C# 2010 Express edition and downloaded packages using nuget command line
C:\Users\sri\Downloads>nuget.exe install oxyplot.wpf
Attempting to resolve dependency 'OxyPlot.Core'.
Installing 'OxyPlot.Core 2013.2.142.1'.
Successfully installed 'OxyPlot.Core 2013.2.142.1'.
Installing 'OxyPlot.Wpf 2013.2.142.1'.
Successfully installed 'OxyPlot.Wpf 2013.2.142.1'.
In the VS2010 project added references to OxyPlot.Wpf.dll and OxyPlot.dll
In the xaml added:
xmlns:oxy="clr-namespace:OxyPlot.Wpf;assembly=OxyPlot.Wpf"
and code-behind added:
using OxyPlot;
using OxyPlot.Axes;
using OxyPlot.Wpf;
and I get the same error as documented by user mli_codeplex
A complete solution with source code for the example would be very helpful
↧