MediaBrowser.Api.csproj 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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. </PropertyGroup>
  15. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  16. <DebugSymbols>true</DebugSymbols>
  17. <DebugType>full</DebugType>
  18. <Optimize>false</Optimize>
  19. <OutputPath>bin\Debug\</OutputPath>
  20. <DefineConstants>DEBUG;TRACE</DefineConstants>
  21. <ErrorReport>prompt</ErrorReport>
  22. <WarningLevel>4</WarningLevel>
  23. </PropertyGroup>
  24. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  25. <DebugType>pdbonly</DebugType>
  26. <Optimize>true</Optimize>
  27. <OutputPath>bin\Release\</OutputPath>
  28. <DefineConstants>TRACE</DefineConstants>
  29. <ErrorReport>prompt</ErrorReport>
  30. <WarningLevel>4</WarningLevel>
  31. </PropertyGroup>
  32. <ItemGroup>
  33. <Reference Include="System" />
  34. <Reference Include="System.ComponentModel.Composition" />
  35. <Reference Include="System.Core" />
  36. <Reference Include="System.Drawing" />
  37. <Reference Include="System.Reactive.Core, Version=2.0.20823.0, Culture=neutral, PublicKeyToken=f300afd708cefcd3, processorArchitecture=MSIL">
  38. <SpecificVersion>False</SpecificVersion>
  39. <HintPath>..\packages\Rx-Core.2.0.20823\lib\Net45\System.Reactive.Core.dll</HintPath>
  40. </Reference>
  41. <Reference Include="System.Reactive.Interfaces, Version=2.0.20823.0, Culture=neutral, PublicKeyToken=f300afd708cefcd3, processorArchitecture=MSIL">
  42. <SpecificVersion>False</SpecificVersion>
  43. <HintPath>..\packages\Rx-Interfaces.2.0.20823\lib\Net45\System.Reactive.Interfaces.dll</HintPath>
  44. </Reference>
  45. <Reference Include="System.Reactive.Linq, Version=2.0.20823.0, Culture=neutral, PublicKeyToken=f300afd708cefcd3, processorArchitecture=MSIL">
  46. <SpecificVersion>False</SpecificVersion>
  47. <HintPath>..\packages\Rx-Linq.2.0.20823\lib\Net45\System.Reactive.Linq.dll</HintPath>
  48. </Reference>
  49. <Reference Include="System.Runtime.Serialization" />
  50. <Reference Include="System.Xml.Linq" />
  51. <Reference Include="System.Data.DataSetExtensions" />
  52. <Reference Include="Microsoft.CSharp" />
  53. <Reference Include="System.Data" />
  54. <Reference Include="System.Xml" />
  55. </ItemGroup>
  56. <ItemGroup>
  57. <Compile Include="ApiService.cs" />
  58. <Compile Include="HttpHandlers\AudioHandler.cs" />
  59. <Compile Include="HttpHandlers\BaseMediaHandler.cs" />
  60. <Compile Include="HttpHandlers\DefaultUserHandler.cs" />
  61. <Compile Include="HttpHandlers\GenreHandler.cs" />
  62. <Compile Include="HttpHandlers\GenresHandler.cs" />
  63. <Compile Include="HttpHandlers\ImageHandler.cs" />
  64. <Compile Include="HttpHandlers\ItemHandler.cs" />
  65. <Compile Include="HttpHandlers\ItemListHandler.cs" />
  66. <Compile Include="HttpHandlers\PersonHandler.cs" />
  67. <Compile Include="HttpHandlers\PluginConfigurationHandler.cs" />
  68. <Compile Include="HttpHandlers\PluginsHandler.cs" />
  69. <Compile Include="HttpHandlers\ServerConfigurationHandler.cs" />
  70. <Compile Include="HttpHandlers\StudioHandler.cs" />
  71. <Compile Include="HttpHandlers\StudiosHandler.cs" />
  72. <Compile Include="HttpHandlers\UsersHandler.cs" />
  73. <Compile Include="HttpHandlers\VideoHandler.cs" />
  74. <Compile Include="HttpHandlers\WeatherHandler.cs" />
  75. <Compile Include="HttpHandlers\YearHandler.cs" />
  76. <Compile Include="HttpHandlers\YearsHandler.cs" />
  77. <Compile Include="ImageProcessor.cs" />
  78. <Compile Include="Plugin.cs" />
  79. <Compile Include="Properties\AssemblyInfo.cs" />
  80. </ItemGroup>
  81. <ItemGroup>
  82. <ProjectReference Include="..\MediaBrowser.Common\MediaBrowser.Common.csproj">
  83. <Project>{9142eefa-7570-41e1-bfcc-468bb571af2f}</Project>
  84. <Name>MediaBrowser.Common</Name>
  85. </ProjectReference>
  86. <ProjectReference Include="..\MediaBrowser.Controller\MediaBrowser.Controller.csproj">
  87. <Project>{17e1f4e6-8abd-4fe5-9ecf-43d4b6087ba2}</Project>
  88. <Name>MediaBrowser.Controller</Name>
  89. </ProjectReference>
  90. <ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj">
  91. <Project>{7eeeb4bb-f3e8-48fc-b4c5-70f0fff8329b}</Project>
  92. <Name>MediaBrowser.Model</Name>
  93. </ProjectReference>
  94. </ItemGroup>
  95. <ItemGroup>
  96. <None Include="packages.config" />
  97. </ItemGroup>
  98. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  99. <PropertyGroup>
  100. <PostBuildEvent>xcopy "$(TargetPath)" "$(SolutionDir)\ProgramData\Plugins\$(ProjectName)\" /y</PostBuildEvent>
  101. </PropertyGroup>
  102. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  103. Other similar extension points exist, see Microsoft.Common.targets.
  104. <Target Name="BeforeBuild">
  105. </Target>
  106. <Target Name="AfterBuild">
  107. </Target>
  108. -->
  109. </Project>