.NET Framework project - added SQLite to my project via Nuget package, app.config and package.config look correct.
Errors is:- "Type : System.IO.FileNotFoundException, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Message : Could not load file or assembly 'System.Data.SQLite, Version=1.0.115.5, Culture=neutral, PublicKeyToken=db937bc2d44ff139' or one of its dependencies. The system cannot find the file specified."
All projects targeting x86
Packages.config
<packages>
<package id="EntityFramework" version="6.4.4" targetFramework="net471" />
<package id="Stub.System.Data.SQLite.Core.NetFramework" version="1.0.115.5" targetFramework="net471" />
<package id="System.Data.SQLite" version="1.0.115.5" targetFramework="net471" />
<package id="System.Data.SQLite.Core" version="1.0.115.5" targetFramework="net471" />
<package id="System.Data.SQLite.EF6" version="1.0.115.5" targetFramework="net471" />
<package id="System.Data.SQLite.Linq" version="1.0.115.5" targetFramework="net471" />
</packages>
I have tried links below and so many others but nothing working - what am I missing?