-
Notifications
You must be signed in to change notification settings - Fork 751
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add experimental diagnostics ids #4179
Conversation
cf5c52b
to
a46831c
Compare
9ff2fae
to
a87b42d
Compare
@@ -35,9 +35,8 @@ | |||
<!-- Prevent analyzer crashes from stopping things --> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
internal const string Resilience = "EXTEXP0001"; | ||
internal const string Compliance = "EXTEXP0002"; | ||
internal const string Telemetry = "EXTEXP0003"; | ||
internal const string TimeProvider = "EXTEXP0004"; | ||
internal const string AutoClient = "EXTEXP0005"; | ||
internal const string AsyncState = "EXTEXP0006"; | ||
internal const string HealthChecks = "EXTEXP0007"; | ||
internal const string ResourceMonitoring = "EXTEXP0008"; | ||
internal const string Hosting = "EXTEXP0009"; | ||
internal const string ObjectPool = "EXTEXP0010"; | ||
internal const string DocumentDb = "EXTEXP0011"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We also need a doc listing all current IDs and explaining which API is each of these IDs light up, if enabled.
The doc should also give guidance on what to do if the ID is encountered - for example, dotnet/aspnetcore has already encountered the TBD warning in the past (dotnet/aspnetcore#49297 (comment)), so once these new IDs flow through what should the maintainers of the repo do. Is it safe to suppress, or should dotnet/aspnetcore rewrite something?
@geeknoid @rafal-mz we need to do the same for https://github.com/Azure/dotnet-extensions-experimental/ too. |
Fixes #4161
I also deleted a bunch of now useless analyzers (since they exist in the main Roslyn analyzers instead)
Microsoft Reviewers: Open in CodeFlow