I am making one WPF application in VS 2013 and trying to publish it. While the application is running in Visual Studio in debug or debug mode, everything is in order. But when I publish the application and install it from the installation file and the opening application, it gives the following error.
Unable to load DLL 'SQLite.Interop.dll': the specified module may not be found. (Exception from HRESULT: 0x8007007E).
I have already tried the solution to add the missing file to the project, that is, the SQLite.Interop.dll DLL and change its properties, for example, set Copy to Output Directory for Always Copy and Create Action = Content. Change it to "Build Action = Embedded Resource", but it still does not work, giving the same error.
source
share