You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, I am using .NET 8, WPF, Prism, and designing with an IoC structure. I hope to compile an application using AOT for commercial use. Can it perfectly support AOT? If not, what modifications do I need to make to achieve this? Or is it currently not possible?
The text was updated successfully, but these errors were encountered:
Like it was said - WPF depends on C++/CLI and is not trimmable. This needs to be fixed in WPF first.
WinForms can be made to work if you don't mind having to re-test the app with AOT enabled a lot. It's not recommended, but possible.
The UI framework that works with native AOT right now the best is Avalonia.
Currently, I am using .NET 8, WPF, Prism, and designing with an IoC structure. I hope to compile an application using AOT for commercial use. Can it perfectly support AOT? If not, what modifications do I need to make to achieve this? Or is it currently not possible?
The text was updated successfully, but these errors were encountered: