Reputation: 841
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
Reputation: 15557
You must add the reference also to MainProject or, as you say, copied into its bin folder.
Upvotes: 1