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
Roslyn Version: Compiler version: '4.6.0-3.23259.8 (c3cc1d0c)'. Language version: 11.0.
Additional Info
In this case just adding /// <inheritdoc /> would be enough, and users of the library would be able to add the documentation if needed. I'm not sure if there are any other places where public/protected members could be generated. Another possibility might be to just add #pragma warning disable CS1591 in all generated files.
The text was updated successfully, but these errors were encountered:
Description
When
OnPropertyChanged
is overridden in a derived class it does not have XML comments, and so it causes aCS1591
warning.To Reproduce
Set
<GenerateDocumentationFile>true</GenerateDocumentationFile>
in csproj, example with derived class from README - https://github.com/canton7/PropertyChanged.SourceGenerator#automatic-dependencies.Version Info
Additional Info
In this case just adding
/// <inheritdoc />
would be enough, and users of the library would be able to add the documentation if needed. I'm not sure if there are any other places where public/protected members could be generated. Another possibility might be to just add#pragma warning disable CS1591
in all generated files.The text was updated successfully, but these errors were encountered: