With Wix, distribute a program that uses SQLite (must work on both 32bit and 64bit)
问题 With WiX, I want to distribute a C# program that uses SQLite. SQLite recommends the files structure below, so I use it: In Wix, I create the x86 and x64 folders and put the right DLL in each: <Directory Id='x86' Name='x86'> <Component Id='x86' Guid='...'> <CreateFolder /> <File Id='f86' Name='SQLite.Interop.dll' Source='x86\SQLite.Interop.dll' /> </Component> </Directory> <Directory Id='x64' Name='x64'> <Component Id='x64' Guid='...'> <CreateFolder /> <File Id='f64' Name='SQLite.Interop.dll'