MediaBrowser.MediaEncoding.csproj 4.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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\AudioEncoder.cs" />
  57. <Compile Include="Encoder\EncodingUtils.cs" />
  58. <Compile Include="Encoder\FFMpegProcess.cs" />
  59. <Compile Include="Encoder\ImageEncoder.cs" />
  60. <Compile Include="Encoder\InternalEncodingTask.cs" />
  61. <Compile Include="Encoder\InternalEncodingTaskFactory.cs" />
  62. <Compile Include="Encoder\MediaEncoder.cs" />
  63. <Compile Include="Properties\AssemblyInfo.cs" />
  64. </ItemGroup>
  65. <ItemGroup>
  66. <ProjectReference Include="..\MediaBrowser.Common\MediaBrowser.Common.csproj">
  67. <Project>{9142eefa-7570-41e1-bfcc-468bb571af2f}</Project>
  68. <Name>MediaBrowser.Common</Name>
  69. </ProjectReference>
  70. <ProjectReference Include="..\MediaBrowser.Controller\MediaBrowser.Controller.csproj">
  71. <Project>{17e1f4e6-8abd-4fe5-9ecf-43d4b6087ba2}</Project>
  72. <Name>MediaBrowser.Controller</Name>
  73. </ProjectReference>
  74. <ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj">
  75. <Project>{7eeeb4bb-f3e8-48fc-b4c5-70f0fff8329b}</Project>
  76. <Name>MediaBrowser.Model</Name>
  77. </ProjectReference>
  78. </ItemGroup>
  79. <ItemGroup>
  80. <None Include="packages.config" />
  81. </ItemGroup>
  82. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  83. <Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(SolutionDir)\.nuget\NuGet.targets')" />
  84. <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
  85. <PropertyGroup>
  86. <ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
  87. </PropertyGroup>
  88. <Error Condition="!Exists('$(SolutionDir)\.nuget\NuGet.targets')" Text="$([System.String]::Format('$(ErrorText)', '$(SolutionDir)\.nuget\NuGet.targets'))" />
  89. </Target>
  90. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  91. Other similar extension points exist, see Microsoft.Common.targets.
  92. <Target Name="BeforeBuild">
  93. </Target>
  94. <Target Name="AfterBuild">
  95. </Target>
  96. -->
  97. </Project>