Reputation: 11
I have a fresh Windows7 and VS2010 and I cannot fully figure out which are the needed files to install in order to use and develop apps using VS2010 and SQLite
Your help will be greatly appreciated.
Morten
Upvotes: 1
Views: 7381
Reputation: 101
You can use nuget extension for VS2010 for installing any libraries into your project.
Install-Package System.Data.SQLite
It will install all necessary assemblies.
Upvotes: 1