I'm not able to find much documentation on referencing a dll and using it in a script. I wrote a library that encapsulates some logic to connect to a vendor's FTP and exposes some common methods.
I would like to reference this class in a shared script like this:
FtpConnector ftp = new FtpConnector();
if (ftp.CheckForFile(filename)) {
etc.....
Here are the steps I've taken.
- Stored the DLL in a folder on the Master machine
- In the adTempus Script interface, under Referenced Assemblies, I click Add->Browse and choose the DLL. When selected, it appears in the Reference Assemblies section below the adTempus DLLs.
- Click OK to save the script and get this error: Script compilation error: Metadata file 'C:\adtempus\Libraries\PointFtpInterface.dll' could not be found
I can't find anything specific to this error message in the adTempus documentation. I've used this library elsewhere without issue.
Any help would be appreciated. Thank you.
Andy