GU0100
November 24, 2021 ยท View on GitHub
Wrong cref type
| Topic | Value |
|---|---|
| Id | GU0100 |
| Severity | Warning |
| Enabled | True |
| Category | Gu.Analyzers.Correctness |
| Code | DocsAnalyzer |
Description
Wrong cref type.
Motivation
ADD MOTIVATION HERE
How to fix violations
ADD HOW TO FIX VIOLATIONS HERE
Configure severity
Via ruleset file.
Configure the severity per project, for more info see MSDN.
Via #pragma directive.
#pragma warning disable GU0100 // Wrong cref type
Code violating the rule here
#pragma warning restore GU0100 // Wrong cref type
Or put this at the top of the file to disable all instances.
#pragma warning disable GU0100 // Wrong cref type
Via attribute [SuppressMessage].
[System.Diagnostics.CodeAnalysis.SuppressMessage("Gu.Analyzers.Correctness",
"GU0100:Wrong cref type",
Justification = "Reason...")]