Works on WPF. But on VSTO project, throws error: Could not load file or assembly 'SQLitePCLRaw.core, Version=2.0.2.669, Culture=neutral

流过昼夜 提交于 2021-01-29 14:33:43

问题


I've created a .NET Standard 2.0 class library project that works fine when referenced by a WPF App (.NET Framework 4.8) project. But when the same library is referenced by a MS Office VSTO Project (also using .NET Framework 4.8), I get the following error on the code line shown below:

Remarks:

  1. I'm using VS2019, Windows20 Pro, Microsoft.Data.Sqlite and following example from same link.
  2. Exact same code works fine on WPF app.
  3. I also tried installing SQLitePCLRaw.core package (as mentioned in the error) but still the same error. Although, I think I should not have to install this package since I did not have to do it with WPF app.
  4. Same copies of MySQLiteDb.db file reside in the bin\Debug folder of VSTO as well as WPF folder. So, that should probably not be an issue

Error:

FileLoadException: Could not load file or assembly 'SQLitePCLRaw.core, Version=2.0.2.669, Culture=neutral, PublicKeyToken=1488e028ca7ab535' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)

Code [error occurs at line using (SqliteConnection db = ....):

string SQLiteDbpath = System.IO.Path.Combine(GetAppInstalPath, "MySQLiteDb.db");

using (SqliteConnection db = new SqliteConnection($"Filename={SQLiteDbpath}"))
{
    db.Open();

    using (SqliteCommand insertCommand = new SqliteCommand())
    {
        ......
        insertCommand.ExecuteNonQuery();
    }
}

回答1:


FileLoadException: Could not load file or assembly 'SQLitePCLRaw.core, Version=2.0.2.669, Culture=neutral, PublicKeyToken=1488e028ca7ab535' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)

You need to include the missed file (SQLitePCLRaw.core) to the folder with the add-in files.



来源:https://stackoverflow.com/questions/62121403/works-on-wpf-but-on-vsto-project-throws-error-could-not-load-file-or-assembly

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!