PropertyChanged.SourceGenerator icon indicating copy to clipboard operation
PropertyChanged.SourceGenerator copied to clipboard

Powerful INotifyPropertyChanged / INotifyPropertyChanging Source Generator, which generates INPC boilerplate for you as part of your build. Supports features such as automatic and manual dependencies...

Results 3 PropertyChanged.SourceGenerator issues
Sort by recently updated
recently updated
newest added

**Description** After upgrading to 1.1.0, `OnPropertyChanged` either does not get called, or `PropertyChanged.SourceGenerator.Internal.EventArgsCache.PropertyChanged_PropertyName` gets passed instead of property name. **To Reproduce** This only generated `OnPropertyChanging`, but not `OnPropertyChanged`. ```csharp public...

bug

**Description** When `OnPropertyChanged` is overridden in a derived class it does not have XML comments, and so it causes a `CS1591` warning. **To Reproduce** Set `true` in csproj, example with...

- EventArgsCacheGenerator currently generates code which requires C# 8.0 (.NET Core). - This results in generated code not compiling when targeting C# 7.3 (.NET Framework 4.8). - This PR updates...