Pull Request を送って頂いたので取り込んでリリースしました。
それに合わせて Visual Studio 拡張機能も更新しています。
変更点
RaisePropertyChangedIfSet
というメソッドを追加しました。以下のように使います。Prism でいうところの SetProperty
メソッドとほぼ同じです。
public class SomeObject : NotificationObject { private string _someProperty; public string SomeProperty { get => _someProperty; set => RaisePropertyChangedIfSet(ref _someProperty, value); } }
願望
誰かドキュメント書いてプルリクエストください。