Is there a way to deal with the 32/64bit differences? Visual C sharp express does not allow you to target a CPU so it always builds for AnyCPU.
That causes a problem as you can not just distribute the System.Data.SQLite.DLL for 32bit because some systems may need the 64bit version.
Is there a workaround for this? I have not gotten into using an installe yet but maybe the installer can determine wich CPU and copy the appropriate DLL? If so how would one go about doing this?
Thanks in advance.