I am getting a ReflectionTypeLoadException from the following code :
var myAssembly = Assembly.LoadFrom(myDLL);
var types = myAssembly.GetTypes())
myDLL references a class in another file in an other assembly ("myDependency.dll")
I made sure that this file resides in the application directory and also in the same folder as "myDLL" file.
How to be able to load myDLL properly in this case ?