This is my App.config
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<probing privatePath="lib" />
</assemblyBinding>
</runtime>
</configuration>
My referenced DLLs are set to not copy to local and I've copied the DLLs to the lib directory in the debug folder and it works well, but when I move my program along with my library folder it doesn't work.
Is there a way I could make it work when the program and library directory to a different folder?
A bit late to this one, but there is an alternative, add this to your Main method
The create the method