NotifyGen

Zero-runtime INotifyPropertyChanged source generator.

NotifyGen binding demo

dotnet add package NotifyGen
using NotifyGen;

[Notify]
public partial class Person
{
    private string _firstName;
    private string _lastName;

    [NotifyComputed]
    public string FullName => $"{FirstName} {LastName}";
}

Start here

Recommended stack: NotifyGen for properties, CommunityToolkit.Mvvm for commands.