The application I'm working on is almost finished but we've come to a crossroads. At multiple times in the future, we'll have to update the application. We could easily just replace the application with the new version as well as the SQLite database, but at the same time we don't want to do that. Essentially, our application has three parts:
1. Application
2. Reports DLL (used by the Application)
3. SQLite database.
Our updates to the application are going to be less frequent than that of the Reports DLL and SQLite database. We may need to add a report, meaning we need to add records to the database and replace the DLL. However, I'm not finding an install package in Visual Studio 2008 that allows you to add logic to it (not sure one even exists). I could probably create my own but if there's something 90% built by Microsoft, I'd rather use that. So my simple questions are:
- Can you add screens/logic to setup projects in Visual Studio 2008?
1a. If you can, does anyone have a good tutorial or link that I may be able to use? Thanks.
The reason we don't want to replace the DB is because there may be information in there that they are working on.