I'm referencing the MvvmValidation package from nuget.org in my .NET 4.6.1 WPF application.
The README has an example of an adapter that implements NotifyDataErrorInfoAdapter, but the actual adapter class is nowhere to be found.
It looks like the NuGet Package Manager is adding a reference to the assembly in the net40-client folder instead of the portable-win8+net45+sl5+wp8 folder.
Unfortunately, when I remove the reference to the net40-client version and add a reference to the portable-win8+net45+sl5+wp8 version, I am forced to also include a System.Windows reference, which causes this issue.
I'm referencing the
MvvmValidation
package from nuget.org in my .NET 4.6.1 WPF application.The
README
has an example of an adapter that implementsNotifyDataErrorInfoAdapter
, but the actual adapter class is nowhere to be found.It looks like the NuGet Package Manager is adding a reference to the assembly in the
net40-client
folder instead of theportable-win8+net45+sl5+wp8
folder.Unfortunately, when I remove the reference to the
net40-client
version and add a reference to theportable-win8+net45+sl5+wp8
version, I am forced to also include aSystem.Windows
reference, which causes this issue.