Problem comes however with the registration of the provider (Entity Framework mostly). Add to that that my product/project runs as a VS extension, and I really dont want to change the devenv.exe.config file to include a registration..
Is the installation MSI based? If so, how do I obtain the actual MSI file, so i can use msiexec to do an unattended install? On Sat, May 25, 2013 at 2:13 PM, Joe Mistachkin <[email protected]>wrote: > > Matthijs ter Woord wrote: > > > > I'm looking for a way to install System.Data.SQLite unattended, as part > of > > the installation procedure of my product. > > How can this be achieved? > > > > Normally, there is nothing that requires installation on an end-user > machine. > Simply deploy the System.Data.SQLite managed and interop assemblies along > with > your application binaries. The section that talks about the native library > pre-loading feature shows the "ideal" file deployment layout: > > * <bin>\YourApp.exe > * <bin>\YourLib.dll > * <bin>\System.Data.SQLite.dll (required, managed-only core assembly) > * <bin>\System.Data.SQLite.Linq.dll (optional, managed-only LINQ > assembly) > * <bin>\x86\SQLite.Interop.dll (required, x86 native interop assembly) > * <bin>\x64\SQLite.Interop.dll (required, x64 native interop assembly) > > For further information, see: > > > https://system.data.sqlite.org/index.html/doc/trunk/www/downloads.wiki > > -- > Joe Mistachkin > > _______________________________________________ > sqlite-users mailing list > [email protected] > http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users > _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

