DiagnosticCatalog.Syslib 1.0.0

dotnet add package DiagnosticCatalog.Syslib --version 1.0.0
                    
NuGet\Install-Package DiagnosticCatalog.Syslib -Version 1.0.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="DiagnosticCatalog.Syslib" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="DiagnosticCatalog.Syslib" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="DiagnosticCatalog.Syslib" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add DiagnosticCatalog.Syslib --version 1.0.0
                    
#r "nuget: DiagnosticCatalog.Syslib, 1.0.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package DiagnosticCatalog.Syslib@1.0.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=DiagnosticCatalog.Syslib&version=1.0.0
                    
Install as a Cake Addin
#tool nuget:?package=DiagnosticCatalog.Syslib&version=1.0.0
                    
Install as a Cake Tool

DiagnosticCatalog.Syslib

🌍 Languages:
πŸ‡¬πŸ‡§ English (this file) | πŸ‡«πŸ‡· FranΓ§ais

The .NET runtime source-generator diagnostics (SYSLIB1xxx) as strongly referenced constants, so that SuppressMessageAttribute takes compile-checked references instead of magic strings.

πŸͺž Mirrors Microsoft.NETCore.App.Ref 10.0.10

13 rules, 4 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

Thirteen rules is the smallest catalogue here, and one of them is the reason it exists.

SYSLIB1090's category is ComInterfaceGenerator.

Not Interoperability, which is what its four closest neighbours use. Not Usage, not Design β€” the name of the generator assembly that happens to declare it. Every other category in every catalogue in this family is a concept a person could arrive at: Usage, Security, Performance, Trimming, Assertion. This one is an implementation detail that leaked into a published contract, carried by exactly one rule.

[SuppressMessage("Interoperability", "SYSLIB1090:...", Justification = "…")]   // wrong, and nothing says so

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.Syslib;

[SuppressMessage(
    SyslibRule.SYSLIB1090.Category,
    SyslibRule.SYSLIB1090.Id,
    Justification = "The interface is only ever marshalled by the legacy path.")]

The day that category is corrected upstream β€” and it looks like the sort of thing that gets corrected β€” the second version follows it and the first keeps compiling while it quietly stops matching.

Installation

<PackageReference Include="DiagnosticCatalog.Syslib" 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

13 rules across 4 categories, and all 13 carry the help link their descriptor declares.

Category Rules What they are about
Usage 6 Marshaller shape and validity for LibraryImport β€” SYSLIB1055–SYSLIB1061
Interoperability 5 Converting to LibraryImport and to the generated COM interface, and COM hosting
Performance 1 SYSLIB1045, Convert to GeneratedRegexAttribute
ComInterfaceGenerator 1 SYSLIB1090, above
[DiagnosticRule]
public static class SYSLIB1045
{
    public const string Id = nameof(SYSLIB1045);
    public const string Category = SyslibCategory.Performance;
    public const string HelpLinkUri = "https://learn.microsoft.com/dotnet/fundamentals/syslib-diagnostics/syslib1045";
}

Which SYSLIB rules these are

The SYSLIB prefix covers two unrelated things, and only one of them is here.

  • SYSLIB1xxx β€” source-generator diagnostics. What this package holds. They come from real analyzers with real DiagnosticDescriptor instances, and [SuppressMessage] silences them.
  • SYSLIB0xxx β€” obsoletion warnings. SYSLIB0001 and its siblings are raised by the compiler from [Obsolete] on the API itself. No analyzer declares them, so no descriptor exists to read and none appears here.

The ids are not contiguous for the same reason a vendor's ids are never contiguous β€” the runtime allocates them across generators, and only the ones that survived to a shipped release are declared.

Categories declared once

SyslibCategory 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, SyslibRule.SYSLIB1090.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 generators ship inside Microsoft.NETCore.App.Ref, the .NET runtime 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 a consumer can look up, rather than whatever happened to be installed on the machine that generated the file.

dotnet run --project src/DiagnosticCatalog.Cli -- generate \
    --package Microsoft.NETCore.App.Ref --package-version latest \
    --namespace DiagnosticCatalog.Syslib --container SyslibRule \
    --output src/DiagnosticCatalog.Syslib/SyslibRules.g.cs

Six generator assemblies are read and ten of their types declare a rule. The whole pack is read rather than a hand-picked subset, so a generator that gains its first rule is caught by the nightly instead of waiting for somebody to notice.

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 runtime 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 syslib release train and versions independently of the foundation, so it can follow the runtime's releases without dragging anything else along.

Publishing is not part of the nightly. A maintainer pushes a syslib-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. That is also why the SYSLIB0xxx obsoletions are out of reach: they are compiler warnings raised from [Obsolete], not analyzer diagnostics. This package covers the SYSLIB1xxx analyzer rules only.

See also

Every catalogue this repository publishes is listed in one place β€” pick the one that matches an analyzer you run:

The ready-made catalogues

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:

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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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 119 8/7/2026