aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/MediaBrowser.Server.Implementations.csproj
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-06-18 05:43:07 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-06-18 05:43:07 -0400
commite56433a0efe5bb69e9dbab796c12f9ca56346580 (patch)
tree88b261ff8f92ea8877b7fa5087bb3c5bdc678f58 /MediaBrowser.Server.Implementations/MediaBrowser.Server.Implementations.csproj
parente677a57bf1cedc55214b0e457778311b8f1ea5ac (diff)
sqlite
Diffstat (limited to 'MediaBrowser.Server.Implementations/MediaBrowser.Server.Implementations.csproj')
-rw-r--r--MediaBrowser.Server.Implementations/MediaBrowser.Server.Implementations.csproj17
1 files changed, 13 insertions, 4 deletions
diff --git a/MediaBrowser.Server.Implementations/MediaBrowser.Server.Implementations.csproj b/MediaBrowser.Server.Implementations/MediaBrowser.Server.Implementations.csproj
index a3a5220a0..d3f21fefb 100644
--- a/MediaBrowser.Server.Implementations/MediaBrowser.Server.Implementations.csproj
+++ b/MediaBrowser.Server.Implementations/MediaBrowser.Server.Implementations.csproj
@@ -82,6 +82,12 @@
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
+ <Reference Include="System.Data.SQLite">
+ <HintPath>..\packages\System.Data.SQLite.x86.1.0.86.0\lib\net45\System.Data.SQLite.dll</HintPath>
+ </Reference>
+ <Reference Include="System.Data.SQLite.Linq">
+ <HintPath>..\packages\System.Data.SQLite.x86.1.0.86.0\lib\net45\System.Data.SQLite.Linq.dll</HintPath>
+ </Reference>
<Reference Include="System.Reactive.Core">
<HintPath>..\packages\Rx-Core.2.1.30214.0\lib\Net45\System.Reactive.Core.dll</HintPath>
</Reference>
@@ -91,6 +97,7 @@
<Reference Include="System.Reactive.Linq">
<HintPath>..\packages\Rx-Linq.2.1.30214.0\lib\Net45\System.Reactive.Linq.dll</HintPath>
</Reference>
+ <Reference Include="System.Runtime.Serialization" />
<Reference Include="System.Web" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
@@ -132,6 +139,8 @@
<Compile Include="Library\UserManager.cs" />
<Compile Include="Localization\LocalizationManager.cs" />
<Compile Include="MediaEncoder\MediaEncoder.cs" />
+ <Compile Include="Persistence\SqliteExtensions.cs" />
+ <Compile Include="Persistence\SqliteRepository.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Providers\ProviderManager.cs" />
<Compile Include="ScheduledTasks\ArtistValidationTask.cs" />
@@ -162,10 +171,10 @@
<Compile Include="Sorting\RevenueComparer.cs" />
<Compile Include="Sorting\RuntimeComparer.cs" />
<Compile Include="Sorting\SortNameComparer.cs" />
- <Compile Include="Persistence\JsonDisplayPreferencesRepository.cs" />
- <Compile Include="Persistence\JsonItemRepository.cs" />
- <Compile Include="Persistence\JsonUserDataRepository.cs" />
- <Compile Include="Persistence\JsonUserRepository.cs" />
+ <Compile Include="Persistence\SqliteDisplayPreferencesRepository.cs" />
+ <Compile Include="Persistence\SqliteItemRepository.cs" />
+ <Compile Include="Persistence\SqliteUserDataRepository.cs" />
+ <Compile Include="Persistence\SqliteUserRepository.cs" />
<Compile Include="Udp\UdpMessageReceivedEventArgs.cs" />
<Compile Include="Udp\UdpServer.cs" />
<Compile Include="Updates\InstallationManager.cs" />