I've currently set up a environment for learning Microsoft Dynamics 365. While I am playing around with code, I am getting a million warnings about missing documentation.
As:
- I am a strong believer in "Clean Code"; and
- I especially don't want to document all these things while just messing about to learn; and
- I want visibility of other warnings which may be more important or at least interesting; and
- I prefer explicit code.
I want to suppress all the warnings and always include the "public" keyword by default for all my classes.
So, I want to change the template from:
class AssetConsistencyCheck
{
}
to
[SuppressBPWarning("BPXmlDocNoDocumentationComments", "Prefer clean code!")]
public class AssetConsistencyCheck
{
}
Is this possible, and if so how?