I am using SubSonic 3 with SQLite 3 for a Windows Application. Installing the .NET provider for SQLite (System.Data.SQLite) was mandatory for me while programming the application, my requirement for deploying the application is, I just want to create one installable and skip the portion for installing .NET provider for SQLite on client machine.
I have added the references of System.Data.SQLite into GAC(in the Setup Project) but that won't work because while running the application it says
System.ArgumentException: Unable to find the requested .Net Framework Data Provider. It may not be installed.
I am sure there is a workaround for this, it shouldn't be necessary to install the .Net Framework provider for SQLite on the client machine.
-mmcmedic