I want to store in my solution a project containing the database creation scripts. When this project is built, it must generate a database file, which will then be used by this and other projects of the solution at the run time. How to do that?
I know I can add Pre-Build task, but I wonder:
You can download the command line client shell for SQLite at http://www.sqlite.org/download.html
Then you can add the following Pre-Build task:
"sqlite3.exe" %dbFilename% < Database.sql