chore: regenerate PublicAPI.Shipped.txt to canonical form#241
Merged
Conversation
The v0.13.1 baseline was hand-edited (the stale record-synthesized members were removed) but never regenerated, leaving it non-canonical vs the analyzer's own output: - missing the 3 protected base-class implicit constructors (ExtractorBase/LoaderBase/TransformerBase .ctor() -> void) - missing the '!' non-nullable reference-type annotations on ~40 members Regenerated headlessly from the analyzer's RS0016 'APIName' output (clean-build SARIF error-log), so it now exactly matches the compiled public surface and the form every downstream leaf-lib baseline uses. Baseline-file only: no public API, runtime, or package change. Build verified clean across all TFMs with TreatWarningsAsErrors. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This was referenced Jun 25, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Regenerates
PublicAPI.Shipped.txtto the analyzer's canonical form.Why
The v0.13.1 fix removed the stale record-synthesized
Reportmembers by hand but didn't regenerate the file, so it drifted from what the PublicApiAnalyzer's own code-fix would produce:ExtractorBase(),LoaderBase(),TransformerBase()(surface visible to derived types).!annotations — ~40 reference-type members lacked the non-nullable!marker.It built clean anyway (RS0016/missing is off by default; the analyzer accepts unannotated ref types as non-nullable), so the shipped package is correct — this is purely baseline fidelity.
How
Regenerated headlessly (no IDE) from the analyzer's
RS0016APINamedata via a clean-build SARIF error-log — the same method now used for every leaf-lib baseline, so Abstractions matches the fleet.Impact
PublicAPI.Shipped.txtonly — no public API, runtime, or NuGet-package change. No release required; it just makes future builds/baselines canonical. Verified: full Release build clean across all TFMs (warnings-as-errors).