Thanks
I couldn't make it work, but when I changed the NETExecute40.exe.config file and added the following configuration, it worked:
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<probing privatePath="assemblies/visualcron/" />
</assemblyBinding>
</runtime>
So basically it works when vi put all our custom assemblies, and all the quantifi assemblies in a folder under the visualcron program (C:\Program Files (x86)\VisualCron). The runtime then apparently checks the NETExecute40.exe.config file and finds the assemblies using the probing path. It does not work when I add a config file called VisualCronLib.dll.config. Pretty dirty. Do you know if this could make other things fail?
Thomas