DiagnosticCatalog.AspNetCore
1.0.0
dotnet add package DiagnosticCatalog.AspNetCore --version 1.0.0
NuGet\Install-Package DiagnosticCatalog.AspNetCore -Version 1.0.0
<PackageReference Include="DiagnosticCatalog.AspNetCore" Version="1.0.0" />
<PackageVersion Include="DiagnosticCatalog.AspNetCore" Version="1.0.0" />
<PackageReference Include="DiagnosticCatalog.AspNetCore" />
paket add DiagnosticCatalog.AspNetCore --version 1.0.0
#r "nuget: DiagnosticCatalog.AspNetCore, 1.0.0"
#:package DiagnosticCatalog.AspNetCore@1.0.0
#addin nuget:?package=DiagnosticCatalog.AspNetCore&version=1.0.0
#tool nuget:?package=DiagnosticCatalog.AspNetCore&version=1.0.0
DiagnosticCatalog.AspNetCore
π Languages:
π¬π§ English (this file) | π«π· FranΓ§ais
The ASP.NET Core and Blazor analyzer rules (ASPxxxx, BLxxxx) as strongly referenced
constants, so that SuppressMessageAttribute takes compile-checked references instead of magic
strings.
πͺ Mirrors
Microsoft.AspNetCore.App.Ref 10.0.1035 rules, 3 categories, every identifier and category read from that release's own analyzers. Regenerated 2026-08-05.
Unofficial. Not affiliated with, endorsed by, or supported by Microsoft.
Why
Every ASP.NET Core project runs these analyzers, and nobody installed them β not because people
do not bother, but because there is nothing to install. They arrive inside the shared framework, and
the web SDK references that framework. No PackageReference names them, and none can be removed.
That is what makes their rules the ones people suppress in source. A rule you switched on gets
tuned in .editorconfig; a rule that came with the framework gets an exception at the one place it
is wrong, with a Justification beside the code that earns it.
[SuppressMessage("Usage", "ASP0018:Unused route parameter", Justification = "β¦")]
Three strings, and nothing checks any of them. Get the id wrong and the suppression silently does nothing β the warning simply stays. Get the category wrong and nothing happens at all, ever: the .NET platform never reads that argument, so no error, no warning and no failing test will tell you.
using DiagnosticCatalog.AspNetCore;
[SuppressMessage(
AspNetCoreRule.ASP0018.Category,
AspNetCoreRule.ASP0018.Id,
Justification = "The parameter is read by the model binder, not by the handler.")]
The day a rule moves to another category, the second version follows it and the first is left naming a category the rule no longer carries β silently, and for as long as the line survives.
The one you do not want to get wrong
ASP0026 is the only Security rule in the set, and it reports this:
[Authorize]overridden by[AllowAnonymous]from farther away.
An [AllowAnonymous] on a base class or an outer scope silently wins over an [Authorize] written
closer to the endpoint β the opposite of what almost everyone reads the code to mean. If a project
ever suppresses that one, the suppression is load-bearing in the strongest sense, and the argument
naming its category is "Security" β a value nothing in the platform will ever check.
Installation
<PackageReference Include="DiagnosticCatalog.AspNetCore" Version="1.0.0" />
That is the only reference you need. This package depends on DiagnosticCatalog, which carries
the DCAT analyzers and code fixes beside its attributes, so referencing this catalogue is what
switches on the checks that validate rule declarations and their use sites. A literal suppression
a catalogue reference would replace is an error by default, and a code fix rewrites it for you.
What is in the package
35 rules across 3 categories, 26 of the 35 carrying the help link their descriptor declares.
| Category | Rules | What they are about |
|---|---|---|
Usage |
32 | Minimal APIs, routing, WebApplicationBuilder migration, header access, Blazor render trees |
Encapsulation |
2 | Blazor component parameters that must be public, and settable (BL0001, BL0004) |
Security |
1 | ASP0026, above |
Two prefixes, one package. ASPxxxx is ASP.NET Core proper β 26 rules, mostly minimal APIs and
routing. BLxxxx is Blazor components β 9 rules about parameters, render trees and persisted state.
They ship together in the framework, so they are catalogued together; the icon badge reads ASP
because a badge carries the majority prefix
(ADR-0032).
[DiagnosticRule]
public static class ASP0026
{
public const string Id = nameof(ASP0026);
public const string Category = AspNetCoreCategory.Security;
public const string HelpLinkUri = "https://learn.microsoft.com/aspnet/core/diagnostics/asp0026";
}
Categories declared once
AspNetCoreCategory holds each category once, and the rules reference it β so a category's spelling
exists in exactly one place. It is internal by design: a suppression reaches a category through
the rule that carries it, AspNetCoreRule.ASP0026.Category, and never through the category constant
on its own. The two fold to the same string today and stop agreeing the day a rule moves
(ADR-0026).
How it is produced
Not transcribed from documentation. The generator reads the analyzer assemblies' metadata for the
types they mark with [DiagnosticAnalyzer], constructs those, and reads the DiagnosticDescriptor
instances they actually declare β the only source that cannot have drifted.
The analyzers ship inside Microsoft.AspNetCore.App.Ref, the ASP.NET Core targeting pack, which
is an ordinary package on nuget.org β that is how the SDK itself acquires it. So the mirrored release
is a package version, one a consumer can look up and install, rather than whatever happened to be on
the machine that generated the file.
dotnet run --project src/DiagnosticCatalog.Cli -- generate \
--package Microsoft.AspNetCore.App.Ref --package-version latest \
--namespace DiagnosticCatalog.AspNetCore --container AspNetCoreRule \
--output src/DiagnosticCatalog.AspNetCore/AspNetCoreRules.g.cs
How it stays current
A nightly workflow regenerates every catalogue from its upstream package and opens a pull request when anything the catalogue publishes has moved. It never publishes: a category or an id that changed upstream changes a published contract, and since the platform never reads a suppression's category, a wrong value merged unreviewed would produce no symptom anywhere. A human reads the diff.
A rule retired upstream is never deleted. It is kept and marked [Obsolete] naming the version
that dropped it, so a project still referencing it gets a CS0618 warning telling it to remove the
suppression β rather than a hard error from a member that vanished. Consumers inline constant values
at their own compile time, so deleting one breaks their recompilation.
A note on versions
The rules a project actually gets are governed by its shared framework, which its target
framework selects β not by a package reference it controls. This catalogue mirrors a targeting-pack
release, and the assembly records exactly which one in [assembly: CatalogSource]. If your app
targets an older ASP.NET Core than the version recorded there, rules added since will be present in
the catalogue and absent from your build; referencing one still compiles, and the suppression simply
never matches anything.
How it reaches nuget.org
This catalogue rides the aspnetcore release train
and versions independently of the foundation, so it can follow ASP.NET Core's releases without
dragging anything else along.
Publishing is not part of the nightly. A maintainer pushes an aspnetcore-vX.Y.Z tag, and the
release workflow packs the package, embeds an SPDX SBOM, and publishes through NuGet
Trusted Publishing with
signed build provenance β no long-lived API key exists anywhere to leak.
Limits
[SuppressMessage] cannot suppress compiler warnings β CS0219 and friends need
#pragma warning disable, which takes bare identifiers and so can never reference a constant. This
package covers the ASPxxxx and BLxxxx analyzer rules only.
See also
Every catalogue this repository publishes is listed in one place β pick the one that matches an analyzer you run:
Want a catalogue of your own? Your analyzer's rules, or an internal ruleset, are declared exactly
the way these are: a static class of constants marked [DiagnosticRule], referenced by consumers
instead of retyped. That marker ships in
DiagnosticCatalog, the foundation this catalogue is built
on, and its README is the guide.
Documentation
For using a catalogue, in the order the work happens:
- Getting started β ten minutes: reference this package, rewrite one suppression, break it on purpose and watch the compiler catch it.
- Writing suppressions that the compiler checks β the full version, including migrating the literals you already have.
- Adopting a catalogue on an existing codebase β the severity ramp, Fix all occurrences, scoping by folder, and what order to convert in.
- Configuration
β every severity key, the category-wide switch, and the
PrivateAssetsmistake that silences everything. - Troubleshooting
β by symptom: nothing is reported,
CS0117,CS0618after an upgrade.
The documentation map picks a page by what you are trying to do; every guide exists in English and French. The specification is the normative version of all of it.
License
Apache-2.0. The rule identifiers, categories, titles and help links are read from a Microsoft analyzer, which is itself MIT-licensed.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
| .NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
| MonoAndroid | monoandroid was computed. |
| MonoMac | monomac was computed. |
| MonoTouch | monotouch was computed. |
| Tizen | tizen40 was computed. tizen60 was computed. |
| Xamarin.iOS | xamarinios was computed. |
| Xamarin.Mac | xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- DiagnosticCatalog (>= 1.0.1)
-
net10.0
- DiagnosticCatalog (>= 1.0.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.0.0 | 116 | 8/7/2026 |