You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Property uses OnPropertyChanged/SetProperty in setter
Error
Flags properties that call OnPropertyChanged or SetProperty in their setter. Use [NotifyPropertyChangedFor(nameof(xxxxx))] - [ObservableProperty] instead for MVVM best practices.
Detects usage of DelegateCommand and suggests migration to RelayCommand in .NET MAUI. The code fix renames the command method appropriately, and if the method is async, appends Async to the new method name. This helps modernize your codebase and leverage CommunityToolkit.MVVM best practices.
Detects usage of Command and suggests migration to RelayCommand in .NET MAUI. The code fix renames the command method appropriately, and if the method is async, appends Async to the new method name. This helps modernize your codebase and leverage CommunityToolkit.MVVM best practices.