I develop a website with Visual Studio 2010. I want to run a Fortran DLL. I used Intel Visual Fortran to create a .dll and to test how to use it. My code is:
You can use the Post-Build Event in the dll Property Pages:
copy/y "$(OutDir)\$(ProjectName).dll" "$(SolutionDir)\bin\debug\"
The DLL will be copied each time you build the DLL or Solution.
The target location might be different.