To work with FTP I use libcurl.dll (+ netovskaya binding from LibCurlNet and LibCurlShim)
The development was carried out successfully and all the functions were implemented, but it was in the Debug configuration. When I tried to release, everything was successfully failed, but when I access the libcurl library I get the following: Unable to load DLL 'libcurl.dll': The specified procedure was not found. (Exception from HRESULT: 0x8007007F)
Where could the problem be?
libcurl.dll
some DependencyWalker. Most likely that due to the different paths Debug / Release does not find the necessary libraries. - αλεχολυτНе найдена указанная процедура
arises due to the fact that in lib there is simply no function that wants to be loaded into Release. Conditionally, for Debug / Release,GetProcAddress
is executed for different names. - αλεχολυτ