MediaBrowser.MediaEncoding.csproj 4.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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. <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 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="BDInfo">
  41. <HintPath>..\packages\MediaBrowser.BdInfo.1.0.0.10\lib\net35\BDInfo.dll</HintPath>
  42. </Reference>
  43. <Reference Include="DvdLib">
  44. <HintPath>..\packages\MediaBrowser.BdInfo.1.0.0.10\lib\net35\DvdLib.dll</HintPath>
  45. </Reference>
  46. <Reference Include="System" />
  47. <Reference Include="System.Core" />
  48. <Reference Include="System.Xml.Linq" />
  49. <Reference Include="System.Data.DataSetExtensions" />
  50. <Reference Include="Microsoft.CSharp" />
  51. <Reference Include="System.Data" />
  52. <Reference Include="System.Xml" />
  53. </ItemGroup>
  54. <ItemGroup>
  55. <Compile Include="BdInfo\BdInfoExaminer.cs" />
  56. <Compile Include="Encoder\EncodingUtils.cs" />
  57. <Compile Include="Encoder\MediaEncoder.cs" />
  58. <Compile Include="Properties\AssemblyInfo.cs" />
  59. <Compile Include="Subtitles\ISubtitleParser.cs" />
  60. <Compile Include="Subtitles\ISubtitleWriter.cs" />
  61. <Compile Include="Subtitles\SrtParser.cs" />
  62. <Compile Include="Subtitles\SrtWriter.cs" />
  63. <Compile Include="Subtitles\SsaParser.cs" />
  64. <Compile Include="Subtitles\SubtitleEncoder.cs" />
  65. <Compile Include="Subtitles\SubtitleTrackInfo.cs" />
  66. <Compile Include="Subtitles\VttWriter.cs" />
  67. </ItemGroup>
  68. <ItemGroup>
  69. <ProjectReference Include="..\MediaBrowser.Common\MediaBrowser.Common.csproj">
  70. <Project>{9142eefa-7570-41e1-bfcc-468bb571af2f}</Project>
  71. <Name>MediaBrowser.Common</Name>
  72. </ProjectReference>
  73. <ProjectReference Include="..\MediaBrowser.Controller\MediaBrowser.Controller.csproj">
  74. <Project>{17e1f4e6-8abd-4fe5-9ecf-43d4b6087ba2}</Project>
  75. <Name>MediaBrowser.Controller</Name>
  76. </ProjectReference>
  77. <ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj">
  78. <Project>{7eeeb4bb-f3e8-48fc-b4c5-70f0fff8329b}</Project>
  79. <Name>MediaBrowser.Model</Name>
  80. </ProjectReference>
  81. </ItemGroup>
  82. <ItemGroup>
  83. <None Include="packages.config" />
  84. </ItemGroup>
  85. <ItemGroup />
  86. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  87. <Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition=" '$(ConfigurationName)' != 'Release Mono' " />
  88. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  89. Other similar extension points exist, see Microsoft.Common.targets.
  90. <Target Name="BeforeBuild">
  91. </Target>
  92. <Target Name="AfterBuild">
  93. </Target>
  94. -->
  95. </Project>