Visual Studio C# - SQLite.Interop.dll not found

后端 未结 8 2254
忘了有多久
忘了有多久 2020-12-06 03:22

I am currently trying to create with Visual Studio a C# application working with SQLite. I installed SQLite for my program with NuGet and three references appeared in the So

8条回答
  •  日久生厌
    2020-12-06 03:54

    Please use the answer to the duplicate issue: https://stackoverflow.com/a/60176344/3634867

    Don't store the dll yourself and copy it to /bin manually, it will lost control to the version updating and depenedcy.

    TL;DR;

    for old csproj file:

     
        true
        false
        false
        false
    
    

    for new csporj file: (i.e. projects beginning with )

    
    

提交回复
热议问题