As we know, there is ReadyToRun compilation option since .net core 3.0 .
There is several dll that made by .net core .
I created a WPF project and referenced all the dll above.
Now I am about to publish the project with ReadyToRun and there is a problem I am not so sure.
Whether the compiler will compile all the reference dll with ReadyToRun while I just compile the WPF project?
Or I have to compile with the ReadyToRun one by one in its project?
Why I asked the question it is so troublesome to compile so many dll with the different target times. I want to find a fast way to do it.
Thank you .