torpederos
torpederos

Reputation: 841

Proper way to set up reference to System.Data.Sqlite

My solution contains several projects. One of them (DataBaseProject) is using Sqlite so I've added reference to System.Data.Sqlite and set "copy local" to TRUE. DataBaseProject is referenced by MainProject. After build in MainProject bin folder there is only DataBaseProject.dll but missing System.Data.Sqlite.dll. How to set up project, that System.Data.Sqlite.dll would be in bin folder of MainProject?

Upvotes: 0

Views: 285

Answers (1)

Erre Efe
Erre Efe

Reputation: 15557

You must add the reference also to MainProject or, as you say, copied into its bin folder.

Upvotes: 1

Related Questions