This question is kind of related to another question but I have a specific scenario in mind.
We do our development on 32-bit machines and deploy to a 64-bit server. The application is an ASP.NET Web Application and we use SQLite for the backend of this application. When I try to build on the remote machine I get errors from MSBuild saying it cannot find the DLL.
The web application needs to be able to launch 64-bit processes (because these processes need lots and lots of memory!)
I have seen solutions where you simply put IIS into 32-bit mode and run everything in 32-bit mode to be able to use SQLite, but does this screw me out of being able to launch a 64-bit process??
Help!!