MediaBrowser.Plugins.Trailers.csproj 4.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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>{2F4C01E2-7C9F-4F08-922E-27AC4A1D53FF}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>MediaBrowser.Plugins.Trailers</RootNamespace>
  11. <AssemblyName>MediaBrowser.Plugins.Trailers</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.ComponentModel.Composition" />
  40. <Reference Include="System.Core" />
  41. <Reference Include="System.Xml.Linq" />
  42. <Reference Include="System.Data.DataSetExtensions" />
  43. <Reference Include="Microsoft.CSharp" />
  44. <Reference Include="System.Data" />
  45. <Reference Include="System.Xml" />
  46. </ItemGroup>
  47. <ItemGroup>
  48. <Compile Include="AppleTrailerListingDownloader.cs" />
  49. <Compile Include="Configuration\PluginConfiguration.cs" />
  50. <Compile Include="Configuration\TrailerConfigurationPage.cs" />
  51. <Compile Include="Providers\TrailerFromJsonProvider.cs" />
  52. <Compile Include="Resolvers\TrailerResolver.cs" />
  53. <Compile Include="ScheduledTasks\CurrentTrailerDownloadTask.cs" />
  54. <Compile Include="Plugin.cs" />
  55. <Compile Include="Properties\AssemblyInfo.cs" />
  56. <Compile Include="Entities\TrailerCollectionFolder.cs" />
  57. <Compile Include="TrailerInfo.cs" />
  58. </ItemGroup>
  59. <ItemGroup>
  60. <ProjectReference Include="..\MediaBrowser.Common\MediaBrowser.Common.csproj">
  61. <Project>{9142eefa-7570-41e1-bfcc-468bb571af2f}</Project>
  62. <Name>MediaBrowser.Common</Name>
  63. </ProjectReference>
  64. <ProjectReference Include="..\MediaBrowser.Controller\MediaBrowser.Controller.csproj">
  65. <Project>{17e1f4e6-8abd-4fe5-9ecf-43d4b6087ba2}</Project>
  66. <Name>MediaBrowser.Controller</Name>
  67. </ProjectReference>
  68. <ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj">
  69. <Project>{7eeeb4bb-f3e8-48fc-b4c5-70f0fff8329b}</Project>
  70. <Name>MediaBrowser.Model</Name>
  71. </ProjectReference>
  72. </ItemGroup>
  73. <ItemGroup>
  74. <EmbeddedResource Include="Configuration\configPage.html" />
  75. </ItemGroup>
  76. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  77. <PropertyGroup>
  78. <PostBuildEvent>xcopy "$(TargetPath)" "$(SolutionDir)\ProgramData-Server\Plugins\" /y</PostBuildEvent>
  79. </PropertyGroup>
  80. <Import Project="$(SolutionDir)\.nuget\nuget.targets" />
  81. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  82. Other similar extension points exist, see Microsoft.Common.targets.
  83. <Target Name="BeforeBuild">
  84. </Target>
  85. <Target Name="AfterBuild">
  86. </Target>
  87. -->
  88. </Project>