MediaBrowser.MediaEncoding.csproj 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  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>{0BD82FA6-EB8A-4452-8AF5-74F9C3849451}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>MediaBrowser.MediaEncoding</RootNamespace>
  11. <AssemblyName>MediaBrowser.MediaEncoding</AssemblyName>
  12. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  17. <DebugSymbols>true</DebugSymbols>
  18. <DebugType>full</DebugType>
  19. <Optimize>false</Optimize>
  20. <OutputPath>bin\Debug\</OutputPath>
  21. <DefineConstants>DEBUG;TRACE</DefineConstants>
  22. <ErrorReport>prompt</ErrorReport>
  23. <WarningLevel>4</WarningLevel>
  24. </PropertyGroup>
  25. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  26. <DebugType>none</DebugType>
  27. <Optimize>true</Optimize>
  28. <OutputPath>bin\Release\</OutputPath>
  29. <DefineConstants>TRACE</DefineConstants>
  30. <ErrorReport>prompt</ErrorReport>
  31. <WarningLevel>4</WarningLevel>
  32. </PropertyGroup>
  33. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release Mono|AnyCPU' ">
  34. <Optimize>false</Optimize>
  35. <OutputPath>bin\Release Mono</OutputPath>
  36. <WarningLevel>4</WarningLevel>
  37. </PropertyGroup>
  38. <ItemGroup>
  39. <Reference Include="BDInfo">
  40. <HintPath>..\packages\MediaBrowser.BdInfo.1.0.0.10\lib\net35\BDInfo.dll</HintPath>
  41. </Reference>
  42. <Reference Include="CommonIO, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
  43. <SpecificVersion>False</SpecificVersion>
  44. <HintPath>..\packages\CommonIO.1.0.0.9\lib\net45\CommonIO.dll</HintPath>
  45. </Reference>
  46. <Reference Include="DvdLib">
  47. <HintPath>..\packages\MediaBrowser.BdInfo.1.0.0.10\lib\net35\DvdLib.dll</HintPath>
  48. </Reference>
  49. <Reference Include="Patterns.Logging">
  50. <HintPath>..\packages\Patterns.Logging.1.0.0.2\lib\portable-net45+sl4+wp71+win8+wpa81\Patterns.Logging.dll</HintPath>
  51. </Reference>
  52. <Reference Include="System" />
  53. <Reference Include="System.Core" />
  54. <Reference Include="System.Xml.Linq" />
  55. <Reference Include="System.Data.DataSetExtensions" />
  56. <Reference Include="Microsoft.CSharp" />
  57. <Reference Include="System.Data" />
  58. <Reference Include="System.Xml" />
  59. <Reference Include="UniversalDetector">
  60. <HintPath>..\ThirdParty\UniversalDetector\UniversalDetector.dll</HintPath>
  61. </Reference>
  62. </ItemGroup>
  63. <ItemGroup>
  64. <Compile Include="..\SharedVersion.cs">
  65. <Link>Properties\SharedVersion.cs</Link>
  66. </Compile>
  67. <Compile Include="BdInfo\BdInfoExaminer.cs" />
  68. <Compile Include="Configuration\EncodingConfigurationFactory.cs" />
  69. <Compile Include="Encoder\AudioEncoder.cs" />
  70. <Compile Include="Encoder\BaseEncoder.cs" />
  71. <Compile Include="Encoder\EncodingJob.cs" />
  72. <Compile Include="Encoder\EncodingJobFactory.cs" />
  73. <Compile Include="Encoder\EncodingUtils.cs" />
  74. <Compile Include="Encoder\EncoderValidator.cs" />
  75. <Compile Include="Encoder\FontConfigLoader.cs" />
  76. <Compile Include="Encoder\JobLogger.cs" />
  77. <Compile Include="Encoder\MediaEncoder.cs" />
  78. <Compile Include="Encoder\VideoEncoder.cs" />
  79. <Compile Include="Probing\FFProbeHelpers.cs" />
  80. <Compile Include="Probing\InternalMediaInfoResult.cs" />
  81. <Compile Include="Probing\ProbeResultNormalizer.cs" />
  82. <Compile Include="Properties\AssemblyInfo.cs" />
  83. <Compile Include="Subtitles\ISubtitleParser.cs" />
  84. <Compile Include="Subtitles\ISubtitleWriter.cs" />
  85. <Compile Include="Subtitles\JsonWriter.cs" />
  86. <Compile Include="Subtitles\ParserValues.cs" />
  87. <Compile Include="Subtitles\SrtParser.cs" />
  88. <Compile Include="Subtitles\SrtWriter.cs" />
  89. <Compile Include="Subtitles\AssParser.cs" />
  90. <Compile Include="Subtitles\SsaParser.cs" />
  91. <Compile Include="Subtitles\SubtitleEncoder.cs" />
  92. <Compile Include="Subtitles\TtmlWriter.cs" />
  93. <Compile Include="Subtitles\VttWriter.cs" />
  94. </ItemGroup>
  95. <ItemGroup>
  96. <ProjectReference Include="..\MediaBrowser.Common\MediaBrowser.Common.csproj">
  97. <Project>{9142eefa-7570-41e1-bfcc-468bb571af2f}</Project>
  98. <Name>MediaBrowser.Common</Name>
  99. </ProjectReference>
  100. <ProjectReference Include="..\MediaBrowser.Controller\MediaBrowser.Controller.csproj">
  101. <Project>{17e1f4e6-8abd-4fe5-9ecf-43d4b6087ba2}</Project>
  102. <Name>MediaBrowser.Controller</Name>
  103. </ProjectReference>
  104. <ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj">
  105. <Project>{7eeeb4bb-f3e8-48fc-b4c5-70f0fff8329b}</Project>
  106. <Name>MediaBrowser.Model</Name>
  107. </ProjectReference>
  108. </ItemGroup>
  109. <ItemGroup>
  110. <None Include="packages.config" />
  111. </ItemGroup>
  112. <ItemGroup>
  113. <EmbeddedResource Include="Probing\whitelist.txt" />
  114. </ItemGroup>
  115. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  116. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  117. Other similar extension points exist, see Microsoft.Common.targets.
  118. <Target Name="BeforeBuild">
  119. </Target>
  120. <Target Name="AfterBuild">
  121. </Target>
  122. -->
  123. </Project>