Yes, MSDN is confused at this point (is there an error?)
Basically, you have nothing to do!
You create your PCL project, just select the appropriate framework. 
PCL automatically manages links for you.
public abstract class ViewModelBase : INotifyPropertyChanged { public event PropertyChangedEventHandler PropertyChanged; protected virtual void OnPropertyChanged(string propName) { if (PropertyChanged != null) { PropertyChanged(this, new PropertyChangedEventArgs(propName)); } } }
Give it a try!
source share