MediaBrowser.Api.csproj 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  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>{4FD51AC5-2C16-4308-A993-C3A84F3B4582}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>MediaBrowser.Api</RootNamespace>
  11. <AssemblyName>MediaBrowser.Api</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. <PlatformTarget>AnyCPU</PlatformTarget>
  26. </PropertyGroup>
  27. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  28. <DebugType>pdbonly</DebugType>
  29. <Optimize>true</Optimize>
  30. <OutputPath>bin\Release\</OutputPath>
  31. <DefineConstants>TRACE</DefineConstants>
  32. <ErrorReport>prompt</ErrorReport>
  33. <WarningLevel>4</WarningLevel>
  34. </PropertyGroup>
  35. <PropertyGroup>
  36. <RunPostBuildEvent>Always</RunPostBuildEvent>
  37. </PropertyGroup>
  38. <ItemGroup>
  39. <Reference Include="MoreLinq, Version=1.0.16006.0, Culture=neutral, PublicKeyToken=384d532d7e88985d, processorArchitecture=MSIL">
  40. <SpecificVersion>False</SpecificVersion>
  41. <HintPath>..\packages\morelinq.1.0.16006\lib\net35\MoreLinq.dll</HintPath>
  42. </Reference>
  43. <Reference Include="ServiceStack.Common, Version=3.9.59.0, Culture=neutral, processorArchitecture=MSIL">
  44. <SpecificVersion>False</SpecificVersion>
  45. <HintPath>..\packages\ServiceStack.Common.3.9.59\lib\net35\ServiceStack.Common.dll</HintPath>
  46. </Reference>
  47. <Reference Include="ServiceStack.Interfaces, Version=3.9.59.0, Culture=neutral, processorArchitecture=MSIL">
  48. <SpecificVersion>False</SpecificVersion>
  49. <HintPath>..\packages\ServiceStack.Common.3.9.59\lib\net35\ServiceStack.Interfaces.dll</HintPath>
  50. </Reference>
  51. <Reference Include="ServiceStack.Text, Version=3.9.59.0, Culture=neutral, processorArchitecture=MSIL">
  52. <SpecificVersion>False</SpecificVersion>
  53. <HintPath>..\packages\ServiceStack.Text.3.9.59\lib\net35\ServiceStack.Text.dll</HintPath>
  54. </Reference>
  55. <Reference Include="System" />
  56. <Reference Include="System.Core" />
  57. <Reference Include="Microsoft.CSharp" />
  58. <Reference Include="System.Data" />
  59. <Reference Include="System.Drawing" />
  60. <Reference Include="System.Net.Http" />
  61. <Reference Include="System.XML" />
  62. </ItemGroup>
  63. <ItemGroup>
  64. <Compile Include="..\SharedVersion.cs">
  65. <Link>Properties\SharedVersion.cs</Link>
  66. </Compile>
  67. <Compile Include="AlbumsService.cs" />
  68. <Compile Include="BaseApiService.cs" />
  69. <Compile Include="DefaultTheme\DefaultThemeService.cs" />
  70. <Compile Include="DefaultTheme\Models.cs" />
  71. <Compile Include="DisplayPreferencesService.cs" />
  72. <Compile Include="EnvironmentService.cs" />
  73. <Compile Include="GamesService.cs" />
  74. <Compile Include="Images\ImageByNameService.cs" />
  75. <Compile Include="Images\ImageRequest.cs" />
  76. <Compile Include="Images\ImageService.cs" />
  77. <Compile Include="Images\ImageWriter.cs" />
  78. <Compile Include="InstantMixService.cs" />
  79. <Compile Include="ItemRefreshService.cs" />
  80. <Compile Include="ItemUpdateService.cs" />
  81. <Compile Include="LibraryService.cs" />
  82. <Compile Include="Library\LibraryHelpers.cs" />
  83. <Compile Include="Library\LibraryService.cs" />
  84. <Compile Include="Library\LibraryStructureService.cs" />
  85. <Compile Include="LocalizationService.cs" />
  86. <Compile Include="MoviesService.cs" />
  87. <Compile Include="NotificationsService.cs" />
  88. <Compile Include="PackageService.cs" />
  89. <Compile Include="Playback\Hls\AudioHlsService.cs" />
  90. <Compile Include="Playback\Hls\BaseHlsService.cs" />
  91. <Compile Include="Playback\Hls\VideoHlsService.cs" />
  92. <Compile Include="Playback\Progressive\AudioService.cs" />
  93. <Compile Include="Playback\Progressive\BaseProgressiveStreamingService.cs" />
  94. <Compile Include="Playback\BaseStreamingService.cs" />
  95. <Compile Include="Playback\Progressive\ProgressiveStreamWriter.cs" />
  96. <Compile Include="Playback\StaticRemoteStreamWriter.cs" />
  97. <Compile Include="Playback\StreamRequest.cs" />
  98. <Compile Include="Playback\StreamState.cs" />
  99. <Compile Include="Playback\Progressive\VideoService.cs" />
  100. <Compile Include="PluginService.cs" />
  101. <Compile Include="ScheduledTasks\ScheduledTaskService.cs" />
  102. <Compile Include="ScheduledTasks\ScheduledTasksWebSocketListener.cs" />
  103. <Compile Include="ApiEntryPoint.cs" />
  104. <Compile Include="SearchService.cs" />
  105. <Compile Include="SessionsService.cs" />
  106. <Compile Include="SimilarItemsHelper.cs" />
  107. <Compile Include="SystemService.cs" />
  108. <Compile Include="TrailersService.cs" />
  109. <Compile Include="TvShowsService.cs" />
  110. <Compile Include="UserLibrary\ArtistsService.cs" />
  111. <Compile Include="UserLibrary\BaseItemsByNameService.cs" />
  112. <Compile Include="UserLibrary\BaseItemsRequest.cs" />
  113. <Compile Include="UserLibrary\GameGenresService.cs" />
  114. <Compile Include="UserLibrary\GenresService.cs" />
  115. <Compile Include="UserLibrary\ItemByNameUserDataService.cs" />
  116. <Compile Include="UserLibrary\ItemsService.cs" />
  117. <Compile Include="UserLibrary\MusicGenresService.cs" />
  118. <Compile Include="UserLibrary\PersonsService.cs" />
  119. <Compile Include="UserLibrary\StudiosService.cs" />
  120. <Compile Include="UserLibrary\UserLibraryService.cs" />
  121. <Compile Include="UserLibrary\YearsService.cs" />
  122. <Compile Include="UserService.cs" />
  123. <Compile Include="Properties\AssemblyInfo.cs" />
  124. <Compile Include="VideosService.cs" />
  125. <Compile Include="WebSocket\LogFileWebSocketListener.cs" />
  126. <Compile Include="WebSocket\SessionInfoWebSocketListener.cs" />
  127. <Compile Include="WebSocket\SystemInfoWebSocketListener.cs" />
  128. </ItemGroup>
  129. <ItemGroup>
  130. <ProjectReference Include="..\MediaBrowser.Common\MediaBrowser.Common.csproj">
  131. <Project>{9142eefa-7570-41e1-bfcc-468bb571af2f}</Project>
  132. <Name>MediaBrowser.Common</Name>
  133. </ProjectReference>
  134. <ProjectReference Include="..\MediaBrowser.Controller\MediaBrowser.Controller.csproj">
  135. <Project>{17e1f4e6-8abd-4fe5-9ecf-43d4b6087ba2}</Project>
  136. <Name>MediaBrowser.Controller</Name>
  137. </ProjectReference>
  138. <ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj">
  139. <Project>{7eeeb4bb-f3e8-48fc-b4c5-70f0fff8329b}</Project>
  140. <Name>MediaBrowser.Model</Name>
  141. </ProjectReference>
  142. </ItemGroup>
  143. <ItemGroup>
  144. <None Include="packages.config" />
  145. </ItemGroup>
  146. <ItemGroup />
  147. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  148. <PropertyGroup>
  149. <PostBuildEvent>
  150. </PostBuildEvent>
  151. </PropertyGroup>
  152. <Import Project="$(SolutionDir)\.nuget\nuget.targets" />
  153. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  154. Other similar extension points exist, see Microsoft.Common.targets.
  155. <Target Name="BeforeBuild">
  156. </Target>
  157. <Target Name="AfterBuild">
  158. </Target>
  159. -->
  160. </Project>