MediaBrowser.MediaEncoding.csproj 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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. <FileAlignment>512</FileAlignment>
  13. <ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  14. <TargetFrameworkProfile>Profile7</TargetFrameworkProfile>
  15. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  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. <ItemGroup>
  35. <Compile Include="..\SharedVersion.cs">
  36. <Link>Properties\SharedVersion.cs</Link>
  37. </Compile>
  38. <Compile Include="BdInfo\BdInfoExaminer.cs" />
  39. <Compile Include="Configuration\EncodingConfigurationFactory.cs" />
  40. <Compile Include="Encoder\AudioEncoder.cs" />
  41. <Compile Include="Encoder\BaseEncoder.cs" />
  42. <Compile Include="Encoder\EncodingJob.cs" />
  43. <Compile Include="Encoder\EncodingJobFactory.cs" />
  44. <Compile Include="Encoder\EncodingUtils.cs" />
  45. <Compile Include="Encoder\EncoderValidator.cs" />
  46. <Compile Include="Encoder\FontConfigLoader.cs" />
  47. <Compile Include="Encoder\MediaEncoder.cs" />
  48. <Compile Include="Encoder\VideoEncoder.cs" />
  49. <Compile Include="Probing\FFProbeHelpers.cs" />
  50. <Compile Include="Probing\InternalMediaInfoResult.cs" />
  51. <Compile Include="Probing\ProbeResultNormalizer.cs" />
  52. <Compile Include="Properties\AssemblyInfo.cs" />
  53. <Compile Include="Subtitles\ConfigurationExtension.cs" />
  54. <Compile Include="Subtitles\ISubtitleParser.cs" />
  55. <Compile Include="Subtitles\ISubtitleWriter.cs" />
  56. <Compile Include="Subtitles\JsonWriter.cs" />
  57. <Compile Include="Subtitles\OpenSubtitleDownloader.cs" />
  58. <Compile Include="Subtitles\ParserValues.cs" />
  59. <Compile Include="Subtitles\SrtParser.cs" />
  60. <Compile Include="Subtitles\SrtWriter.cs" />
  61. <Compile Include="Subtitles\AssParser.cs" />
  62. <Compile Include="Subtitles\SsaParser.cs" />
  63. <Compile Include="Subtitles\SubtitleEncoder.cs" />
  64. <Compile Include="Subtitles\TtmlWriter.cs" />
  65. <Compile Include="Subtitles\VttWriter.cs" />
  66. </ItemGroup>
  67. <ItemGroup>
  68. <ProjectReference Include="..\BDInfo\BDInfo.csproj">
  69. <Project>{88ae38df-19d7-406f-a6a9-09527719a21e}</Project>
  70. <Name>BDInfo</Name>
  71. </ProjectReference>
  72. <ProjectReference Include="..\MediaBrowser.Common\MediaBrowser.Common.csproj">
  73. <Project>{9142eefa-7570-41e1-bfcc-468bb571af2f}</Project>
  74. <Name>MediaBrowser.Common</Name>
  75. </ProjectReference>
  76. <ProjectReference Include="..\MediaBrowser.Controller\MediaBrowser.Controller.csproj">
  77. <Project>{17e1f4e6-8abd-4fe5-9ecf-43d4b6087ba2}</Project>
  78. <Name>MediaBrowser.Controller</Name>
  79. </ProjectReference>
  80. <ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj">
  81. <Project>{7eeeb4bb-f3e8-48fc-b4c5-70f0fff8329b}</Project>
  82. <Name>MediaBrowser.Model</Name>
  83. </ProjectReference>
  84. <ProjectReference Include="..\OpenSubtitlesHandler\OpenSubtitlesHandler.csproj">
  85. <Project>{4a4402d4-e910-443b-b8fc-2c18286a2ca0}</Project>
  86. <Name>OpenSubtitlesHandler</Name>
  87. </ProjectReference>
  88. </ItemGroup>
  89. <ItemGroup>
  90. <None Include="packages.config" />
  91. </ItemGroup>
  92. <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
  93. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  94. Other similar extension points exist, see Microsoft.Common.targets.
  95. <Target Name="BeforeBuild">
  96. </Target>
  97. <Target Name="AfterBuild">
  98. </Target>
  99. -->
  100. </Project>