Need an option to create temporary assemblies for applications that require assemblies to be physical present on disk?
ravibpatel opened this issue · 2 comments
ravibpatel commented
I am using CompileAssemblyFromSource to compile some code at run time and it requires to have referenced assemblies to be present on disk. Embedding assemblies using Libz made the application crash because of it. Is there any way to set Libz to create temporary assemblies like Costura.Fody does?
MiloszKrajewski commented
'--safe-load' option, available in scenarios 2-7
ravibpatel commented
Thanks. It does the trick.