I have the following two files in a directory on Ubuntu:
program.exe
RFIDAPI.dll
program.exe was compiled on a Windows 7 machine using Visual C# Express as a "Console Application"
RFIDAPI.dll is a library that was given to me by the company who implemented the API for communicating with their device over ethernet.
When I run ./program.exe on the Ubuntu machine, mono-devel fails to find the dynamic library:
Unhandled Exception: System.DllNotFoundException: RFIDAPI.dll
at(wrapper managed-to-native) Namespace.RFID_Class:Method_Call ()
The program runs fine on Windows with the same conditions. Any idea how I can get this program to link to the DLL on Ubuntu using mono-devel?