How can I load a .net module(just a normal assembly except it doesn't contain assembly manifest) without the need of the manifest? I have some assemblies that throws this error when I try to run them:
The module was expected to contain an assembly manifest
Normally I can fix this problem by recompiling the assembly using ilasm after adding the assembly manifest:
.assembly test{ }
But is there other work around for this problem? Can Assembly.LoadModule(...)
fix my problem?