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
The only way to load unverifiable code is from a full trust process (or maybe app domain) with verification disabled.
EDIT: I'm not making this up, one of the C# language designers said "Unverifiable code requires full trust and is generally to be avoided"