I'm developing an application in C # that has several dependencies, one of which is different in 32 bits or 64 bits.
When I compile the application: here is the result of the compilation
In the x64 and x86 folders, the same dependency is found (SQLite.Interop.dll), but an architecture-specific file (x86: 1223 KB, x64: 1575 KB).
As said in the title, I want to create an installer for this application using Visual Studo Installer.
When I add the program output to "Application folder", all the dependencies come, except the one in the x64 or x86 folder. How can I add this famous dependency according to the architecture of the computer? If I have to create 2 different installers, how can I just add this dependency to each installer?
Thank you in advance !