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
Add a /// <summary /> comment to all public generated members (classes and methods).
Describe suggestions on how to achieve the rule
I use this csproj configuration containing the <Public> flag to generate a public class.
My editorconfig rules require all public classes/methods to contain XML documentation.
So I get the following error “CS1592 Missing XML comment for publicly visible type or member ‘LanguageResource’”.
I can't add an exclusion to this file because it's not generated in my source folders (but in a temporary folder).
Is it possible to add // <summary /> to the class name and ResourceManager method?
Can I create a PR to do this?
Analyzer
Microsoft.CodeAnalysis.ResxSourceGenerator
Analyzer source
NuGet Package: Microsoft.CodeAnalysis.ResxSourceGenerator
Version: - 3.11.0-beta1.24508.2
Describe the improvement
Add a
/// <summary />
comment to all public generated members (classes and methods).Describe suggestions on how to achieve the rule
I use this csproj configuration containing the
<Public>
flag to generate a public class.My
editorconfig
rules require all public classes/methods to contain XML documentation.So I get the following error “CS1592 Missing XML comment for publicly visible type or member ‘LanguageResource’”.
I can't add an exclusion to this file because it's not generated in my source folders (but in a temporary folder).
Is it possible to add
// <summary />
to the class name andResourceManager
method?Can I create a PR to do this?
The text was updated successfully, but these errors were encountered: