0

When I follow the online method

Unable to Load SQLite.Interop.dll

, and modify the attribute of SQLite.Interop.dll as copy. I generate an A.dll and use another B.exe to reference this A.dll, but the project will not be automatically generated SQLite.Interop.dll. Do I need to do anything else?

aybe
  • 15,516
  • 9
  • 57
  • 105
jzian
  • 23
  • 5
  • Does this answer your question? [Unable to load DLL 'SQLite.Interop.dll'](https://stackoverflow.com/questions/13028069/unable-to-load-dll-sqlite-interop-dll) – jazb Feb 03 '21 at 07:39

1 Answers1

1

Use the library the way it's mean to, that is, through its NuGet package:

https://www.nuget.org/packages/System.Data.SQLite

Everything should go smoothly then.

aybe
  • 15,516
  • 9
  • 57
  • 105