소스 검색

Added local version of libsqlite3.so.0. Removed unused dll file.

abeloin 11 년 전
부모
커밋
21bcf0c733
2개의 변경된 파일14개의 추가작업 그리고 1개의 파일을 삭제
  1. 10 1
      MediaBrowser.Server.Mono/MediaBrowser.Server.Mono.csproj
  2. 4 0
      MediaBrowser.Server.Mono/System.Data.SQLite.dll.config

+ 10 - 1
MediaBrowser.Server.Mono/MediaBrowser.Server.Mono.csproj

@@ -129,9 +129,18 @@
     <None Include="app.config" />
     <None Include="app.config" />
   </ItemGroup>
   </ItemGroup>
   <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>
       <Link>sqlite3.dll</Link>
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </Content>
     </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>
   </ItemGroup>
 </Project>
 </Project>

+ 4 - 0
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>