MediaBrowser.MediaEncoding.csproj 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="12.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.6</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
  15. <TargetFrameworkProfile />
  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>none</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 Condition=" '$(Configuration)|$(Platform)' == 'Release Mono|AnyCPU' ">
  35. <Optimize>false</Optimize>
  36. <OutputPath>bin\Release Mono</OutputPath>
  37. <WarningLevel>4</WarningLevel>
  38. </PropertyGroup>
  39. <ItemGroup>
  40. <Reference Include="System" />
  41. <Reference Include="System.Core" />
  42. <Reference Include="System.Xml.Linq" />
  43. <Reference Include="System.Data.DataSetExtensions" />
  44. <Reference Include="Microsoft.CSharp" />
  45. <Reference Include="System.Data" />
  46. <Reference Include="System.Xml" />
  47. <Reference Include="UniversalDetector">
  48. <HintPath>..\ThirdParty\UniversalDetector\UniversalDetector.dll</HintPath>
  49. </Reference>
  50. </ItemGroup>
  51. <ItemGroup>
  52. <Compile Include="..\SharedVersion.cs">
  53. <Link>Properties\SharedVersion.cs</Link>
  54. </Compile>
  55. <Compile Include="BdInfo\BdInfoExaminer.cs" />
  56. <Compile Include="Configuration\EncodingConfigurationFactory.cs" />
  57. <Compile Include="Encoder\AudioEncoder.cs" />
  58. <Compile Include="Encoder\BaseEncoder.cs" />
  59. <Compile Include="Encoder\EncodingJob.cs" />
  60. <Compile Include="Encoder\EncodingJobFactory.cs" />
  61. <Compile Include="Encoder\EncodingUtils.cs" />
  62. <Compile Include="Encoder\EncoderValidator.cs" />
  63. <Compile Include="Encoder\FontConfigLoader.cs" />
  64. <Compile Include="Encoder\JobLogger.cs" />
  65. <Compile Include="Encoder\MediaEncoder.cs" />
  66. <Compile Include="Encoder\VideoEncoder.cs" />
  67. <Compile Include="Probing\FFProbeHelpers.cs" />
  68. <Compile Include="Probing\InternalMediaInfoResult.cs" />
  69. <Compile Include="Probing\ProbeResultNormalizer.cs" />
  70. <Compile Include="Properties\AssemblyInfo.cs" />
  71. <Compile Include="Subtitles\ConfigurationExtension.cs" />
  72. <Compile Include="Subtitles\ISubtitleParser.cs" />
  73. <Compile Include="Subtitles\ISubtitleWriter.cs" />
  74. <Compile Include="Subtitles\JsonWriter.cs" />
  75. <Compile Include="Subtitles\OpenSubtitleDownloader.cs" />
  76. <Compile Include="Subtitles\ParserValues.cs" />
  77. <Compile Include="Subtitles\SrtParser.cs" />
  78. <Compile Include="Subtitles\SrtWriter.cs" />
  79. <Compile Include="Subtitles\AssParser.cs" />
  80. <Compile Include="Subtitles\SsaParser.cs" />
  81. <Compile Include="Subtitles\SubtitleEncoder.cs" />
  82. <Compile Include="Subtitles\TtmlWriter.cs" />
  83. <Compile Include="Subtitles\VttWriter.cs" />
  84. </ItemGroup>
  85. <ItemGroup>
  86. <ProjectReference Include="..\..\BdInfo\BDInfo\BDInfo.csproj">
  87. <Project>{88ae38df-19d7-406f-a6a9-09527719a21e}</Project>
  88. <Name>BDInfo</Name>
  89. </ProjectReference>
  90. <ProjectReference Include="..\MediaBrowser.Common\MediaBrowser.Common.csproj">
  91. <Project>{9142eefa-7570-41e1-bfcc-468bb571af2f}</Project>
  92. <Name>MediaBrowser.Common</Name>
  93. </ProjectReference>
  94. <ProjectReference Include="..\MediaBrowser.Controller\MediaBrowser.Controller.csproj">
  95. <Project>{17e1f4e6-8abd-4fe5-9ecf-43d4b6087ba2}</Project>
  96. <Name>MediaBrowser.Controller</Name>
  97. </ProjectReference>
  98. <ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj">
  99. <Project>{7eeeb4bb-f3e8-48fc-b4c5-70f0fff8329b}</Project>
  100. <Name>MediaBrowser.Model</Name>
  101. </ProjectReference>
  102. <ProjectReference Include="..\OpenSubtitlesHandler\OpenSubtitlesHandler.csproj">
  103. <Project>{4a4402d4-e910-443b-b8fc-2c18286a2ca0}</Project>
  104. <Name>OpenSubtitlesHandler</Name>
  105. </ProjectReference>
  106. </ItemGroup>
  107. <ItemGroup>
  108. <EmbeddedResource Include="Probing\whitelist.txt" />
  109. </ItemGroup>
  110. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  111. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  112. Other similar extension points exist, see Microsoft.Common.targets.
  113. <Target Name="BeforeBuild">
  114. </Target>
  115. <Target Name="AfterBuild">
  116. </Target>
  117. -->
  118. </Project>