Als Workaround wird empfohlen die DLLs in das Anwendungsverzeichnis zu legen.
Zitat:
The best solution would be to put all the DLLs in the same directory as the application.
https://stackoverflow.com/a/13256146/80901
Die Ursache scheint zu sein, dass die erste SSL
DLL eine Abhängigkeit von einer weiteren hat. Und dann gilt die System Suchreiehnfolge für DLLs:
Zitat:
When your application lives in a different folder from MyDll.dll, those dependencies will not be resolved from the folder that contains MyDll.dll. Instead they are resolved by the system
DLL search order.