aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--MediaBrowser.Server.Mono/MediaBrowser.Server.Mono.csproj11
-rw-r--r--MediaBrowser.Server.Mono/System.Data.SQLite.dll.config4
2 files changed, 14 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Mono/MediaBrowser.Server.Mono.csproj b/MediaBrowser.Server.Mono/MediaBrowser.Server.Mono.csproj
index cccc75c92..2b2ccbe99 100644
--- a/MediaBrowser.Server.Mono/MediaBrowser.Server.Mono.csproj
+++ b/MediaBrowser.Server.Mono/MediaBrowser.Server.Mono.csproj
@@ -129,9 +129,18 @@
<None Include="app.config" />
</ItemGroup>
<ItemGroup>
- <Content Include="..\ThirdParty\SQLite3\x86\3.8.2\sqlite3.dll">
+ <Content Include="..\ThirdParty\SQLite3\windows\x86\3.8.2\sqlite3.dll">
<Link>sqlite3.dll</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
+ <Content Include="..\ThirdParty\SQLite3\linux\x86\3.8.2\libsqlite3.so.0.8.6">
+ <Link>lib\libsqlite3.so.0.8.6</Link>
+ <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
+ </Content>
+ <Content Include="..\ThirdParty\SQLite3\linux\x86_64\3.8.2\libsqlite3.so.0.8.6">
+ <Link>lib64\libsqlite3.so.0.8.6</Link>
+ <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
+ </Content>
+ <Content Include="System.Data.SQLite.dll.config" />
</ItemGroup>
</Project> \ No newline at end of file
diff --git a/MediaBrowser.Server.Mono/System.Data.SQLite.dll.config b/MediaBrowser.Server.Mono/System.Data.SQLite.dll.config
new file mode 100644
index 000000000..df4189b56
--- /dev/null
+++ b/MediaBrowser.Server.Mono/System.Data.SQLite.dll.config
@@ -0,0 +1,4 @@
+<configuration>
+ <dllmap dll="sqlite3" target="./lib/libsqlite3.so.0.8.6" os="!windows"/>
+ <dllmap dll="sqlite3" target="./lib64/libsqlite3.so.0.8.6" os="!windows"/>
+</configuration>