MediaBrowser.Api.csproj 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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">
  38. <HintPath>..\packages\Rx-Core.2.0.20814\lib\Net45\System.Reactive.Core.dll</HintPath>
  39. </Reference>
  40. <Reference Include="System.Reactive.Interfaces">
  41. <HintPath>..\packages\Rx-Interfaces.2.0.20814\lib\Net45\System.Reactive.Interfaces.dll</HintPath>
  42. </Reference>
  43. <Reference Include="System.Reactive.Linq">
  44. <HintPath>..\packages\Rx-Linq.2.0.20814\lib\Net45\System.Reactive.Linq.dll</HintPath>
  45. </Reference>
  46. <Reference Include="System.Runtime.Serialization" />
  47. <Reference Include="System.Xml.Linq" />
  48. <Reference Include="System.Data.DataSetExtensions" />
  49. <Reference Include="Microsoft.CSharp" />
  50. <Reference Include="System.Data" />
  51. <Reference Include="System.Xml" />
  52. </ItemGroup>
  53. <ItemGroup>
  54. <Compile Include="ApiService.cs" />
  55. <Compile Include="HttpHandlers\AudioHandler.cs" />
  56. <Compile Include="HttpHandlers\BaseMediaHandler.cs" />
  57. <Compile Include="HttpHandlers\GenreHandler.cs" />
  58. <Compile Include="HttpHandlers\GenresHandler.cs" />
  59. <Compile Include="HttpHandlers\ImageHandler.cs" />
  60. <Compile Include="HttpHandlers\ItemHandler.cs" />
  61. <Compile Include="HttpHandlers\ItemListHandler.cs" />
  62. <Compile Include="HttpHandlers\PersonHandler.cs" />
  63. <Compile Include="HttpHandlers\PluginConfigurationHandler.cs" />
  64. <Compile Include="HttpHandlers\PluginsHandler.cs" />
  65. <Compile Include="HttpHandlers\StudioHandler.cs" />
  66. <Compile Include="HttpHandlers\StudiosHandler.cs" />
  67. <Compile Include="HttpHandlers\UsersHandler.cs" />
  68. <Compile Include="HttpHandlers\VideoHandler.cs" />
  69. <Compile Include="HttpHandlers\YearHandler.cs" />
  70. <Compile Include="HttpHandlers\YearsHandler.cs" />
  71. <Compile Include="ImageProcessor.cs" />
  72. <Compile Include="Plugin.cs" />
  73. <Compile Include="Properties\AssemblyInfo.cs" />
  74. </ItemGroup>
  75. <ItemGroup>
  76. <ProjectReference Include="..\MediaBrowser.Common\MediaBrowser.Common.csproj">
  77. <Project>{9142eefa-7570-41e1-bfcc-468bb571af2f}</Project>
  78. <Name>MediaBrowser.Common</Name>
  79. </ProjectReference>
  80. <ProjectReference Include="..\MediaBrowser.Controller\MediaBrowser.Controller.csproj">
  81. <Project>{17e1f4e6-8abd-4fe5-9ecf-43d4b6087ba2}</Project>
  82. <Name>MediaBrowser.Controller</Name>
  83. </ProjectReference>
  84. <ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj">
  85. <Project>{7eeeb4bb-f3e8-48fc-b4c5-70f0fff8329b}</Project>
  86. <Name>MediaBrowser.Model</Name>
  87. </ProjectReference>
  88. </ItemGroup>
  89. <ItemGroup>
  90. <None Include="packages.config" />
  91. </ItemGroup>
  92. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  93. <PropertyGroup>
  94. <PostBuildEvent>xcopy "$(TargetPath)" "$(SolutionDir)\ProgramData\Plugins\$(ProjectName)\" /y</PostBuildEvent>
  95. </PropertyGroup>
  96. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  97. Other similar extension points exist, see Microsoft.Common.targets.
  98. <Target Name="BeforeBuild">
  99. </Target>
  100. <Target Name="AfterBuild">
  101. </Target>
  102. -->
  103. </Project>