✅ Can I using AOT Library into WPF project?
My project I want to release to the public and pay for it. But this Net based code can be viewed with a disassembly application like dotPeek. Maybe the easiest way is to do code obfuscation, but some tools are paid. And doing obfuscation may decrease application performance. I heard that Net Core can use AOT Compilation with Native assembly like C/C++ do. Generally Net projects use JIT Compilation. Is it possible to use a Library compiled with AOT to a project like WPF that must use JIT Compilation? How to do it?
