There is an application. In it, depending on certain parameters, forms from dll are raised, which are dynamically loaded by
Assembly.Load ("Library1.dll");
I need to compile these assemblies into machine images using Ngen
ngen install MyApp.exe
But the problem is that MyApp.exe does not physically refer to these assemblies, and, accordingly, no machine images are created for them. Is there any way around this?