MediaBrowser.Server.Sqlite.csproj 4.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  4. <PropertyGroup>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7. <ProjectGuid>{8649ED6B-8504-4D00-BFA5-B8C73CC744DB}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>MediaBrowser.Server.Sqlite</RootNamespace>
  11. <AssemblyName>MediaBrowser.Server.Sqlite</AssemblyName>
  12. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
  15. <RestorePackages>true</RestorePackages>
  16. </PropertyGroup>
  17. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  18. <DebugSymbols>true</DebugSymbols>
  19. <DebugType>full</DebugType>
  20. <Optimize>false</Optimize>
  21. <OutputPath>bin\Debug\</OutputPath>
  22. <DefineConstants>DEBUG;TRACE</DefineConstants>
  23. <ErrorReport>prompt</ErrorReport>
  24. <WarningLevel>4</WarningLevel>
  25. </PropertyGroup>
  26. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  27. <DebugType>pdbonly</DebugType>
  28. <Optimize>true</Optimize>
  29. <OutputPath>bin\Release\</OutputPath>
  30. <DefineConstants>TRACE</DefineConstants>
  31. <ErrorReport>prompt</ErrorReport>
  32. <WarningLevel>4</WarningLevel>
  33. </PropertyGroup>
  34. <PropertyGroup>
  35. <RunPostBuildEvent>Always</RunPostBuildEvent>
  36. </PropertyGroup>
  37. <ItemGroup>
  38. <Reference Include="System" />
  39. <Reference Include="System.Core" />
  40. <Reference Include="System.Data.SQLite">
  41. <HintPath>..\packages\System.Data.SQLite.1.0.84.0\lib\net45\System.Data.SQLite.dll</HintPath>
  42. </Reference>
  43. <Reference Include="System.Data.SQLite.Linq">
  44. <HintPath>..\packages\System.Data.SQLite.1.0.84.0\lib\net45\System.Data.SQLite.Linq.dll</HintPath>
  45. </Reference>
  46. <Reference Include="Microsoft.CSharp" />
  47. <Reference Include="System.Data" />
  48. </ItemGroup>
  49. <ItemGroup>
  50. <Compile Include="..\SharedVersion.cs">
  51. <Link>Properties\SharedVersion.cs</Link>
  52. </Compile>
  53. <Compile Include="Properties\AssemblyInfo.cs" />
  54. <Compile Include="SQLiteDisplayPreferencesRepository.cs" />
  55. <Compile Include="SQLiteExtensions.cs" />
  56. <Compile Include="SQLiteItemRepository.cs" />
  57. <Compile Include="SQLiteRepository.cs" />
  58. <Compile Include="SQLiteUserDataRepository.cs" />
  59. <Compile Include="SQLiteUserRepository.cs" />
  60. </ItemGroup>
  61. <ItemGroup>
  62. <Content Include="x64\SQLite.Interop.dll">
  63. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  64. </Content>
  65. <Content Include="x86\SQLite.Interop.dll">
  66. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  67. </Content>
  68. </ItemGroup>
  69. <ItemGroup>
  70. <None Include="packages.config" />
  71. </ItemGroup>
  72. <ItemGroup>
  73. <ProjectReference Include="..\MediaBrowser.Common\MediaBrowser.Common.csproj">
  74. <Project>{9142eefa-7570-41e1-bfcc-468bb571af2f}</Project>
  75. <Name>MediaBrowser.Common</Name>
  76. </ProjectReference>
  77. <ProjectReference Include="..\MediaBrowser.Controller\MediaBrowser.Controller.csproj">
  78. <Project>{17e1f4e6-8abd-4fe5-9ecf-43d4b6087ba2}</Project>
  79. <Name>MediaBrowser.Controller</Name>
  80. </ProjectReference>
  81. <ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj">
  82. <Project>{7eeeb4bb-f3e8-48fc-b4c5-70f0fff8329b}</Project>
  83. <Name>MediaBrowser.Model</Name>
  84. </ProjectReference>
  85. </ItemGroup>
  86. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  87. <Import Project="$(SolutionDir)\.nuget\nuget.targets" />
  88. <PropertyGroup>
  89. <PostBuildEvent>xcopy "$(TargetPath)" "$(SolutionDir)\MediaBrowser.ServerApplication\CorePlugins\" /y</PostBuildEvent>
  90. </PropertyGroup>
  91. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  92. Other similar extension points exist, see Microsoft.Common.targets.
  93. <Target Name="BeforeBuild">
  94. </Target>
  95. <Target Name="AfterBuild">
  96. </Target>
  97. -->
  98. </Project>