System.Data.SQLite from NuGet, interop dll not copied to output directory
问题 I installed System.Data.SQLite Core (x86/x64) from NuGet. It built without warnings but threw System.DllNotFoundException regarding SQLite.Interop.dll . I rigged my projects to copy the SQLite.Interop.dll from under the NuGet package's directory to the output directory, and now it runs without the exception. Why didn't the NuGet package configure my projects to put the appropriate interop dll in the output directory? It seems like it should be able to do that. I'm new to interop and I