diff --git a/README.md b/README.md index 3cddbb4..5eb9278 100644 --- a/README.md +++ b/README.md @@ -40,6 +40,11 @@ or with the .NET CLI: dotnet add package tbbuck.Hangfire.Storage.SQLite --prerelease ``` +> **.NET Framework note:** the patched SourceGear SQLite engine does not support `AnyCPU` on +> .NET Framework. If you consume this package from a .NET Framework app, set an explicit +> `` (`x64` or `x86`). Modern .NET (Core / 5+) consumers are unaffected — native +> assets are resolved per-RID automatically. + ## Usage This is how you connect to an SQLite instance diff --git a/src/main/Hangfire.Storage.SQLite/Hangfire.Storage.SQLite.csproj b/src/main/Hangfire.Storage.SQLite/Hangfire.Storage.SQLite.csproj index 3e36713..86f57bc 100644 --- a/src/main/Hangfire.Storage.SQLite/Hangfire.Storage.SQLite.csproj +++ b/src/main/Hangfire.Storage.SQLite/Hangfire.Storage.SQLite.csproj @@ -1,11 +1,14 @@  - + + netstandard2.0 - - netstandard2.0;net48 - 0.5.0-beta tbbuck.Hangfire.Storage.SQLite