MediaBrowser.Controller.csproj 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  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>{17E1F4E6-8ABD-4FE5-9ECF-43D4B6087BA2}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>MediaBrowser.Controller</RootNamespace>
  11. <AssemblyName>MediaBrowser.Controller</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="protobuf-net, Version=2.0.0.480, Culture=neutral, PublicKeyToken=257b51d87d2e4d67, processorArchitecture=MSIL">
  34. <SpecificVersion>False</SpecificVersion>
  35. <HintPath>..\packages\protobuf-net.2.0.0.480\lib\net40\protobuf-net.dll</HintPath>
  36. </Reference>
  37. <Reference Include="System" />
  38. <Reference Include="System.ComponentModel.Composition" />
  39. <Reference Include="System.Core" />
  40. <Reference Include="System.Reactive.Core, Version=2.0.20823.0, Culture=neutral, PublicKeyToken=f300afd708cefcd3, processorArchitecture=MSIL">
  41. <SpecificVersion>False</SpecificVersion>
  42. <HintPath>..\packages\Rx-Core.2.0.20823\lib\Net45\System.Reactive.Core.dll</HintPath>
  43. </Reference>
  44. <Reference Include="System.Reactive.Interfaces, Version=2.0.20823.0, Culture=neutral, PublicKeyToken=f300afd708cefcd3, processorArchitecture=MSIL">
  45. <SpecificVersion>False</SpecificVersion>
  46. <HintPath>..\packages\Rx-Interfaces.2.0.20823\lib\Net45\System.Reactive.Interfaces.dll</HintPath>
  47. </Reference>
  48. <Reference Include="System.Reactive.Linq, Version=2.0.20823.0, Culture=neutral, PublicKeyToken=f300afd708cefcd3, processorArchitecture=MSIL">
  49. <SpecificVersion>False</SpecificVersion>
  50. <HintPath>..\packages\Rx-Linq.2.0.20823\lib\Net45\System.Reactive.Linq.dll</HintPath>
  51. </Reference>
  52. <Reference Include="System.Xml.Linq" />
  53. <Reference Include="System.Data.DataSetExtensions" />
  54. <Reference Include="Microsoft.CSharp" />
  55. <Reference Include="System.Data" />
  56. <Reference Include="System.Xml" />
  57. </ItemGroup>
  58. <ItemGroup>
  59. <Compile Include="Configuration\ServerApplicationPaths.cs" />
  60. <Compile Include="Configuration\ServerConfiguration.cs" />
  61. <Compile Include="Library\ItemResolveEventArgs.cs" />
  62. <Compile Include="FFMpeg\FFProbe.cs" />
  63. <Compile Include="FFMpeg\FFProbeResult.cs" />
  64. <Compile Include="IO\DirectoryWatchers.cs" />
  65. <Compile Include="IO\FileData.cs" />
  66. <Compile Include="IO\Shortcut.cs" />
  67. <Compile Include="Library\ItemController.cs" />
  68. <Compile Include="Kernel.cs" />
  69. <Compile Include="Properties\AssemblyInfo.cs" />
  70. <Compile Include="Providers\BaseMetadataProvider.cs" />
  71. <Compile Include="Providers\AudioInfoProvider.cs" />
  72. <Compile Include="Providers\FolderProviderFromXml.cs" />
  73. <Compile Include="Providers\ImageFromMediaLocationProvider.cs" />
  74. <Compile Include="Providers\LocalTrailerProvider.cs" />
  75. <Compile Include="Providers\VideoInfoProvider.cs" />
  76. <Compile Include="Resolvers\AudioResolver.cs" />
  77. <Compile Include="Resolvers\BaseItemResolver.cs" />
  78. <Compile Include="Resolvers\FolderResolver.cs" />
  79. <Compile Include="Resolvers\VideoResolver.cs" />
  80. <Compile Include="Xml\BaseItemXmlParser.cs" />
  81. <Compile Include="Xml\XmlExtensions.cs" />
  82. </ItemGroup>
  83. <ItemGroup>
  84. <ProjectReference Include="..\MediaBrowser.Common\MediaBrowser.Common.csproj">
  85. <Project>{9142eefa-7570-41e1-bfcc-468bb571af2f}</Project>
  86. <Name>MediaBrowser.Common</Name>
  87. </ProjectReference>
  88. <ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj">
  89. <Project>{7eeeb4bb-f3e8-48fc-b4c5-70f0fff8329b}</Project>
  90. <Name>MediaBrowser.Model</Name>
  91. </ProjectReference>
  92. </ItemGroup>
  93. <ItemGroup>
  94. <None Include="packages.config" />
  95. </ItemGroup>
  96. <ItemGroup>
  97. <EmbeddedResource Include="FFMpeg\ffmpeg.exe" />
  98. </ItemGroup>
  99. <ItemGroup>
  100. <EmbeddedResource Include="FFMpeg\ffprobe.exe" />
  101. <Content Include="FFMpeg\readme.txt" />
  102. </ItemGroup>
  103. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  104. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  105. Other similar extension points exist, see Microsoft.Common.targets.
  106. <Target Name="BeforeBuild">
  107. </Target>
  108. <Target Name="AfterBuild">
  109. </Target>
  110. -->
  111. </Project>