Hi, I have a C# program (VS 2013) that calls a Fortran DLL (Intel Parallel Studio XE 2017). When I build the DLL (x64), all the files compile without any issue, however on the Linking, I get the following error:
mt.exe : general error c101008d: Failed to write the updated manifest to the resource of file "....\x64\Debug\TestDLL1.dll". The operation failed.
When I go to the folder, I find the DLL has been created. Q1: Does this mean, the DLL cannot be used?
Q2. I am not sure if the above is related to this question. Anyway, I have a C# frontend (simple code to call the Fortran DLL). When I try to call the Fortran DLL from the C# EXE, I get an error saying that the Fortran DLL cannot be found (though the path and file are correct). I went into the Fortran DLL and added some breakpoints and linked it up to the C# EXE. When I run the Fortran DLL from inside the VS debugger, the program runs fine.
Any idea how to fix the DLL link issue? Please let me know if you need more details.