-
Notifications
You must be signed in to change notification settings - Fork 3.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve trimming support for EF Core apps to reduce application size #21894
Open
1 of 7 tasks
Labels
area-aot
area-global
composite-issue
A grouping of multiple related issues into one issue
needs-design
punted-for-6.0
type-enhancement
User Story
A single user-facing feature. Can be grouped under an epic.
Milestone
Comments
6 tasks
roji
changed the title
Use dynamic access annotations for better linker trimming
Developers can safely trim EF Core apps to reduce application size
Feb 4, 2021
roji
added
the
User Story
A single user-facing feature. Can be grouped under an epic.
label
Feb 4, 2021
6 tasks
roji
changed the title
Developers can safely trim EF Core apps to reduce application size
Improve trimming support for EF Core apps to reduce application size
Feb 4, 2021
I think the implementation of this method need to be revisited:
Why not call |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
Also take dotnet/runtime#61231 into account. |
ajcvickers
added
the
composite-issue
A grouping of multiple related issues into one issue
label
Dec 6, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
area-aot
area-global
composite-issue
A grouping of multiple related issues into one issue
needs-design
punted-for-6.0
type-enhancement
User Story
A single user-facing feature. Can be grouped under an epic.
This is a grouping of related issues. Feel free to vote (👍) for this issue to indicate that this is an area that you think we should spend time on, but consider also voting for individual issues for things you consider especially important.
ILLinker allows making application size smaller by trimming code that isn't actually used. This is problematic in various dynamic/reflection scenarios, where the linker is unable to know that a method is actually needed.
Done in 8.0
Backlog
Resources:
FYI the regression testing strategy for this isn't trivial
Relevant blog post: https://devblogs.microsoft.com/dotnet/app-trimming-in-net-5/
The text was updated successfully, but these errors were encountered: