I am developing a WPF desktop application that uses a SQLite DB and this is in my App_data folder which is fine while a run it in debug but how do i include a DB file when i build my application and run it on another computer? do i need to build an installer for my app to create a copy of the DB in a location on the users machine that has read/write access?
Thanks
C:\ProgramData. You create your app folder there for the SQLite database. In your code refer to your database from here:Environment.GetFolderPath(Environment.SpecialFolder.CommonApplicationData)