fix: ship symbols in a .snupkg instead of embedding them in the assembly - #390
Merged
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests.
Additional details and impacted files@@ Coverage Diff @@
## main #390 +/- ##
===========================================
- Coverage 98.01% 76.64% -21.37%
===========================================
Files 39 37 -2
Lines 52854 4501 -48353
Branches 1119 1119
===========================================
- Hits 51803 3450 -48353
Misses 796 796
Partials 255 255 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
📊 Benchmark Results
PR branch
PR base
|
This was referenced Aug 14, 2026
Closed
Closed
This was referenced Aug 23, 2026
Closed
Closed
This was referenced Aug 31, 2026
Open
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.
▎ DebugType=embedded (#340, released in 9.0.31) put a PDB inside every shipped assembly, so coverage collectors in consumers' test runs began instrumenting this library's ~48k-line generated LocaleData table — one report measured ~3.5 minutes of added time per test project (#389). This reverts to the SDK-default portable PDB and publishes symbols as a side-by-side .snupkg, which preserves debugging via the symbol server and Source Link while restoring the pre-9.0.31 footprint in consumers' output directories.
▎ Also excludes the generated data tables from our own coverage, which the embedded PDB had inflated from ~77% to ~98%; expect the Codecov project check to fail once against the old baseline.