Morten B
Morten B

Reputation: 11

SQLite, VS2010 how to install

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

Answers (1)

cylon-v
cylon-v

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

Related Questions