Drammy
1
I am running on a Mac, but some of my fellow developers are running on windows.
When I try test code they’ve written I get the exception below, which I understand is because I’m running on ARM architecture (MacBook Pro M3).
Unable to load shared library ‘SQLite.Interop.dll’ or one of its dependencies
How do we configure the tests to run on both Windows and Mac?
mythz
2
As per install docs you need to install ServiceStack.OrmLite.Sqlite.Data:
<PackageReference Include="ServiceStack.OrmLite.Sqlite.Data" Version="8.*" />
1 Like
Drammy
3
Thanks @mythz - we already have that package installed…
EDIT: realised we don’t need the other Sqlite package installed and it now works, thanks
1 Like