Trim and Native AOT compatibility - #431
Merged
Merged
Conversation
Make the library trim/AOT-safe and prove it in CI. - Enable IsAotCompatible on the modern TFMs (trim/AOT analyzers; netstandard2.0 excluded as it cannot AOT). - Isolate the only reflection path (assembly-scanning reader discovery): the default Converter/MarkdownDomReader constructors no longer touch it, and the assembly-scanning overloads + RegisterFromAssemblies are annotated [RequiresUnreferencedCode]/[RequiresDynamicCode]. - Add Converter.RegisterReader(tag, reader): an AOT-safe way to add custom readers without [MarkdownReader] assembly scanning. Covered by tests. - Add tools/ReverseMarkdown.AotSmoke, published with PublishAot, and a CI job that fails on any IL2xxx/IL3xxx warning then runs the native binary. - Document trimming/AOT and RegisterReader in the extending guide. Verified locally: Native AOT publish produces a working binary with zero trim/AOT warnings (AngleSharp included); full test suite passes.
Add AOT compatibility to the README features and the docs (introduction highlights + a Trimming and Native AOT section on the Supported Frameworks page). Bump VersionPrefix 6.0.0 -> 6.1.0 for the RegisterReader API and AOT support.
This was referenced Jul 7, 2026
This was referenced Jul 14, 2026
This was referenced Jul 22, 2026
This was referenced Jul 29, 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.
Makes ReverseMarkdown trim- and Native AOT-safe.
Changes
IsAotCompatibleon net8/9/10 (netstandard2.0 excluded).[MarkdownReader]assembly scanning) with[RequiresUnreferencedCode]/[RequiresDynamicCode].Converter.RegisterReader(tag, reader)- an AOT-safe way to add custom readers, no scanning.