Skip to content

Releases: thomaslevesque/EssentialMVVM

1.0.2

11 Dec 21:24
Compare
Choose a tag to compare

New

  • Add SetPropertyResult.AndRaiseCanExecuteChanged, to refresh a command's CanExecute when the property value changes. It can be used like this:
private string _foo;
public string Foo
{
    get => _foo;
    set => Set(ref _foo, value).AndRaiseCanExecuteChanged(_barCommand);
}

private DelegateCommand? _barCommand;

1.0.1

29 Oct 20:41
Compare
Choose a tag to compare

Add NuGet package metadata; no functional change.

1.0.0

29 Oct 19:34
Compare
Choose a tag to compare

First (supposedly) stable release