Open swapnilpachkude opened 1 week ago
Hiho, AFAIK defaultrefassemblies is list of assemblies for later use. What happens if you add your interop.dll as well to project?
project.DefaultRefAssemblies.Add(@"Files\SQLite.Interop.dll");
Yep, this is most likely what is missing
I am able to create a .db file but while creating a table using SqliteConnection throws an exception that could not find SQLite.Interop.dll file
using System; using System.Data.SQLite; using System.Windows.Forms; using WixSharp;
namespace WixSharpTestApp { public class Program { private static readonly string installDir = @"%ProgramFiles%\WixSharpTest";
}