1
0
Fork 0
mirror of https://github.com/VSadov/Satori.git synced 2025-06-08 03:27:04 +09:00
Satori/docs/tools/illink
Sven Boemer 9407c9cfa8
Fix type parsing issues in ILLink and ILC (#104060)
- Fixes https://github.com/dotnet/runtime/issues/98955

   We will now produce a warning when a non-assembly-qualified type
   flows into a string location annotated with
   DynamicallyAccessedMembers, and we don't try to look up or mark the
   type (since we don't know which assemblies will be searched at
   runtime by the Type.GetType call).

- Fixes https://github.com/dotnet/runtime/issues/103906

   The ILLink intrinsic handling for `Type.GetType` will now look in
   corelib for generic arguments, matching native AOT.

This replaces the existing warning IL2105. This uses a new warning
instead of repurposing IL2105, because we already documented IL2105
and older versions of ILLink will produce it. Best to avoid any
confusion about them.
2024-07-12 14:07:32 -07:00
..
custom-steps.md fix policheck (#102828) 2024-05-29 10:54:19 -07:00
data-formats.md Move illink documentation to runtime's documentation location (#78520) 2022-11-17 13:08:29 -08:00
error-codes.md Fix type parsing issues in ILLink and ILC (#104060) 2024-07-12 14:07:32 -07:00
illink-options.md Update docs.microsoft.com usages to learn.microsoft.com (#102881) 2024-05-31 11:27:45 -07:00
illink-tasks.md Move illink documentation to runtime's documentation location (#78520) 2022-11-17 13:08:29 -08:00
methods-kept-by-interface.md Update ILLink wording (#82050) 2023-02-23 10:44:50 -08:00
optimizations.md Update ILLink wording (#82050) 2023-02-23 10:44:50 -08:00
README.md Update docs.microsoft.com usages to learn.microsoft.com (#102881) 2024-05-31 11:27:45 -07:00
serialization.md Update docs.microsoft.com usages to learn.microsoft.com (#102881) 2024-05-31 11:27:45 -07:00

Documentation Index

This folder includes several documents that explain both high-level and low-level concepts about the IL trimmer and related tools.

Official Docs

View the official trimming docs at learn.microsoft.com

Usage Docs

Design Docs