I am trying to setup FTN95 in a minimalist way on our CI server to build our application, however on the server I get the following exception when calling dbk_link4:
PS C:\FTN95> dbk_link4
Unhandled Exception: System.TypeInitializationException: The type initializer for 'Salford.Linker' threw an exception. -
--> System.TypeInitializationException: The type initializer for 'Salford.Fortran.RTLibrary' threw an exception. ---> Sy
stem.DllNotFoundException: Unable to load DLL 'SALFLIBC.dll': The specified module could not be found. (Exception from H
RESULT: 0x8007007E)
at Salford.Fortran.RTLibrary.__com_plus_initialise(Int32 hin)
at Salford.Fortran.RTLibrary.InitLibrary()
at Salford.Fortran.RTLibrary..cctor()
--- End of inner exception stack trace ---
at Salford.Fortran.RTLibrary.InitLibrary()
at Salford.Linker..cctor()
--- End of inner exception stack trace ---
at Salford.Linker.Main(String[] args)
SALFLIBC.dll is in the same location as on my personal development machine but on the CI server I get the above error... How can I ensure it finds SALFLIBC.dll?
Thanks, Alex.