We’re currently using the following versions in our .NetCore app:
<PackageReference Include="zetetic-sqlcipher-windows-fips" Version="4.5.2" />
<PackageReference Include="SQLitePCLRaw.bundle_zetetic" Version="2.1.3" />
Attempting to upgrade to versions:
Everything runs correctly and as expected (debug/release) in our dev environment.
Our published/installed app is now crashing with the following stack trace:
CoreCLR Version: 8.0.1425.11118
.NET Version: 8.0.14
Description: The process was terminated due to an unhandled exception.
Exception Info: System.DllNotFoundException: Dll was not found.
at SQLitePCL.SQLite3Provider_sqlcipher.SQLitePCL.ISQLite3Provider.sqlite3_libversion_number()
at SQLitePCL.raw.SetProvider(ISQLite3Provider imp)
Has something changed with the upgrade that would require us to do something different with our project files or publish commands?
Thx