Skip to content
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

Use UnsafeAccessorAttribute in dotnet8 instead of reflection #16

Open
Genmutant opened this issue May 24, 2024 · 2 comments
Open

Use UnsafeAccessorAttribute in dotnet8 instead of reflection #16

Genmutant opened this issue May 24, 2024 · 2 comments
Labels
enhancement New feature or request

Comments

@Genmutant
Copy link

Would it be possible to generate private method accessors using UnsafeAccessorAttribute when targetting at least dotnet8?
That would make it safe to use with NativeAOT and Trimming, as the accessed attributes are marked as used and not removed.

@m31coding
Copy link
Owner

Thank you for pointing this out! The UnsafeAccessorAttribute is indeed a great feature, and I would love to eliminate the reflection code. However, I plan to stick with .NET 6 until the end of the year, and I prefer not to complicate the code with conditional compilation directives (ifdefs).

Is there another way to address your issue? Are there possibilities for configuring the trimming, such as ignoring a specific class during the trimming process?

Best regards,
Kevin

@m31coding m31coding added the enhancement New feature or request label May 26, 2024
@Genmutant
Copy link
Author

Yes, it's possible to manually force it to keep the complete classes when trimming. I haven't checked if AOT would still work though.

Thanks for your fast answer and work!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants