I'm working on an integration test harness that offers developers the ability to execute methods either against our integration database or against a SQLite in-memory database.
Because none of the actual SQLite code is referenced by my harness, I have to add dummy code to ensure that msbuild copies the DLLs:
namespace References {
internal interface IReferenceUnusedDependencies {
SQLiteException e { set; } // Reference System.Data.SQLite.dll
IMappingEngineRunner r { set; } // Reference AutoMapper.dll
}
}
However, I can't figure out how to reference code from System.Data.SQLite.Linq.dll
- all of the classes and interfaces it contains are internal.
Is it possible to make these references somehow?