-
Notifications
You must be signed in to change notification settings - Fork 5
Description
Hi
Great extension use case! I'd open a discussion than an issue if that was enabled on the GitHub Repo.
I see in the code there are references to System.Reflection, that is not AoT compatible, however from what I see the scope of it usage is quite narrow.
It would be great of there was a way to eliminate that dependency, of flag the requisite methods given this MSFT guide.
Having the methods attributed for AoT compatibility ensures the linker can generate the correct code, and provide the developer with the requisite warnings when using the packages methods as applicable.
There are lots of use cases for needing AoT, beyond performance, what this is important to us as well as the package emphasis on benchmarks, ours is also to build native code such that it can't be easily decompiled to IL and reverse engineered for our distributable utilities.
Thanks Again!