-
Notifications
You must be signed in to change notification settings - Fork 123
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
Add IL trimming support for DotNext.Metaprogramming #219
base: develop
Are you sure you want to change the base?
Conversation
e1e1790
to
9c731ea
Compare
I just did some testing in a simple console app: static class Program
{
[DynamicDependency(DynamicallyAccessedMemberTypes.All, typeof(MyClass<>))]
static void Main()
{
Console.WriteLine(Type.GetType(Console.ReadLine()?.Trim() ?? string.Empty));
}
}
class MyClass<T> // "MyClass`1" in Type.GetType()
{
} Good news: It works! If you remove the attribute, publish with trimming, and run the program, it will fail to find the type. With the attribute, it will be there as expected. (Note: I'm getting the type name from user input to make 100% sure that it isn't just being preserved by the linker's dataflow analysis.) So, going by this, it should be safe to sprinkle |
Does it mean that |
I asked Michal on Discord and he said that it won't do that. But this should only matter for AOT. For JIT use cases, just preserving the uninstantiated generic class should be enough for any instantiation of it to work. |
Just noting that I haven't forgotten about this. 🙂 I just have some other items on my to-do list that I need to check off before I get back to this. |
Okay. I think I'm starting to come around to your position that it might just be too much work to do this accurately. I've run into multiple cases where I thought "oh, I'll just slap on I'll keep poking at it for a bit, but it's not looking good for |
@sakno I've mulled this over some more, and I think I might throw in the towel. Even for our use case of DotNext.Metaprogramming, we ended up deciding that writing a source generator made more sense for other reasons than trimming -- namely, startup performance, compile-time error detection, and debuggability -- so the primary motivation for this work is gone anyway. 😔 That said, if you like, I can split the addition of the DotNext.Trimming project into a separate PR as that ought to still be useful for more complete trimming analysis of the other DotNext libraries that are actually trimming-compatible. What do you think? |
Any updates on this? |
Continuing from #218 (see #218 (comment)).