I\'m attempting to dynamically load some (purchased) assemblies from resource streams in a C# program during an MSI installation routine, but I\'m getting \"Unverifiable code fa
This may not be relevant any longer, but I encountered the same issue recently. If you take the stream and stick it in a temp file, you can then use Assembly.LoadFrom to load the assembly.