MatrixIO.IO.MpegTs.csproj 3.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  6. <ProjectGuid>{B2B26824-21F0-4576-BD4A-104EDD61E180}</ProjectGuid>
  7. <OutputType>Library</OutputType>
  8. <AppDesignerFolder>Properties</AppDesignerFolder>
  9. <RootNamespace>MatrixIO</RootNamespace>
  10. <AssemblyName>MatrixIO.IO.MPEGTS</AssemblyName>
  11. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  12. <TargetFrameworkProfile>Profile1</TargetFrameworkProfile>
  13. <FileAlignment>512</FileAlignment>
  14. <ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  15. <SccProjectName>SAK</SccProjectName>
  16. <SccLocalPath>SAK</SccLocalPath>
  17. <SccAuxPath>SAK</SccAuxPath>
  18. <SccProvider>SAK</SccProvider>
  19. </PropertyGroup>
  20. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  21. <DebugSymbols>true</DebugSymbols>
  22. <DebugType>full</DebugType>
  23. <Optimize>false</Optimize>
  24. <OutputPath>bin\Debug\</OutputPath>
  25. <DefineConstants>DEBUG;TRACE</DefineConstants>
  26. <ErrorReport>prompt</ErrorReport>
  27. <WarningLevel>4</WarningLevel>
  28. </PropertyGroup>
  29. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  30. <DebugType>pdbonly</DebugType>
  31. <Optimize>true</Optimize>
  32. <OutputPath>bin\Release\</OutputPath>
  33. <DefineConstants>TRACE</DefineConstants>
  34. <ErrorReport>prompt</ErrorReport>
  35. <WarningLevel>4</WarningLevel>
  36. </PropertyGroup>
  37. <ItemGroup>
  38. <Reference Include="System" />
  39. <Reference Include="System.Core" />
  40. <Reference Include="System.Xml" />
  41. </ItemGroup>
  42. <ItemGroup>
  43. <Compile Include="..\MatrixIO.IO\Diagnostics\Trace.cs">
  44. <Link>Diagnostics\Trace.cs</Link>
  45. </Compile>
  46. <Compile Include="IO\MpegTs\NalUnit.cs" />
  47. <Compile Include="IO\MpegTs\AacsPacket.cs" />
  48. <Compile Include="IO\MpegTs\TsSection.cs" />
  49. <Compile Include="IO\MpegTs\Streams\ByteStream.cs" />
  50. <Compile Include="IO\MpegTs\Streams\PacketizedElementalStream.cs" />
  51. <Compile Include="IO\MpegTs\Streams\TableStream.cs" />
  52. <Compile Include="IO\MpegTs\Tables\DescriptionTable.cs" />
  53. <Compile Include="IO\MpegTs\PesPacket.cs" />
  54. <Compile Include="IO\MpegTs\Tables\ProgramAssociationTable.cs" />
  55. <Compile Include="IO\MpegTs\TsDescriptor.cs" />
  56. <Compile Include="IO\MpegTs\Tables\ProgramMapTable.cs" />
  57. <Compile Include="IO\MpegTs\AdaptationField.cs" />
  58. <Compile Include="IO\MpegTs\AdaptationFieldExtension.cs" />
  59. <Compile Include="IO\MpegTs\Descriptors\ProgramStreamDescriptor.cs" />
  60. <Compile Include="IO\MpegTs\TsDemuxer.cs" />
  61. <Compile Include="IO\MpegTs\TsPacket.cs" />
  62. <Compile Include="IO\MpegTs\TsProgram.cs" />
  63. <Compile Include="IO\MpegTs\TsStream.cs" />
  64. <Compile Include="IO\MpegTs\TsTable.cs" />
  65. <Compile Include="IO\MpegTs\Descriptors\UnknownDescriptor.cs" />
  66. <Compile Include="IO\MpegTs\TsUnit.cs" />
  67. <Compile Include="Properties\AssemblyInfo.cs" />
  68. </ItemGroup>
  69. <ItemGroup>
  70. <None Include="Specifications\iso13818-1.pdf" />
  71. <None Include="Specifications\ISO_IEC_13818-1_2007_PDF_version_%28en%29.pdf" />
  72. </ItemGroup>
  73. <ItemGroup>
  74. <ProjectReference Include="..\MatrixIO.IO\MatrixIO.IO.csproj">
  75. <Project>{EDC16014-ECA3-4B93-A849-B81EAC369DD2}</Project>
  76. <Name>MatrixIO.IO</Name>
  77. </ProjectReference>
  78. </ItemGroup>
  79. <ItemGroup />
  80. <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
  81. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  82. Other similar extension points exist, see Microsoft.Common.targets.
  83. <Target Name="BeforeBuild">
  84. </Target>
  85. <Target Name="AfterBuild">
  86. </Target>
  87. -->
  88. </Project>