I am currently trying to create with Visual Studio a C# application working with SQLite. I installed SQLite for my program with NuGet and three references appeared in the So
SQlite.Interop is not referenceable, you have to:
In your VS project Add Existing File: Sqlite.Interop.dll actual location is .\bin\Debug\x86 or \bin\Debug\x64 Select properties and set Compilation Action in "Content" and copy to the output directory = "Always Copy" Rebuild
In your VS project Add Existing File: Sqlite.Interop.dll actual location is .\bin\Debug\x86 or \bin\Debug\x64
Select properties and set Compilation Action in "Content" and copy to the output directory = "Always Copy"
Rebuild