DirectShowExampleLibrary.csproj 4.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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>{8F5CF8AA-480A-4865-84CC-3F7BBEBB1CF2}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>DirectShowExampleLibrary</RootNamespace>
  11. <AssemblyName>DirectShowExampleLibrary</AssemblyName>
  12. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. </PropertyGroup>
  15. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  16. <DebugSymbols>true</DebugSymbols>
  17. <DebugType>full</DebugType>
  18. <Optimize>false</Optimize>
  19. <OutputPath>bin\Debug\</OutputPath>
  20. <DefineConstants>DEBUG;TRACE</DefineConstants>
  21. <ErrorReport>prompt</ErrorReport>
  22. <WarningLevel>4</WarningLevel>
  23. </PropertyGroup>
  24. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  25. <DebugType>pdbonly</DebugType>
  26. <Optimize>true</Optimize>
  27. <OutputPath>bin\Release\</OutputPath>
  28. <DefineConstants>TRACE</DefineConstants>
  29. <ErrorReport>prompt</ErrorReport>
  30. <WarningLevel>4</WarningLevel>
  31. </PropertyGroup>
  32. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
  33. <DebugSymbols>true</DebugSymbols>
  34. <OutputPath>bin\x86\Debug\</OutputPath>
  35. <DefineConstants>DEBUG;TRACE</DefineConstants>
  36. <DebugType>full</DebugType>
  37. <PlatformTarget>x86</PlatformTarget>
  38. <ErrorReport>prompt</ErrorReport>
  39. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  40. </PropertyGroup>
  41. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
  42. <OutputPath>bin\x86\Release\</OutputPath>
  43. <DefineConstants>TRACE</DefineConstants>
  44. <Optimize>true</Optimize>
  45. <DebugType>pdbonly</DebugType>
  46. <PlatformTarget>x86</PlatformTarget>
  47. <ErrorReport>prompt</ErrorReport>
  48. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  49. </PropertyGroup>
  50. <ItemGroup>
  51. <Reference Include="System" />
  52. <Reference Include="System.Core" />
  53. <Reference Include="System.Drawing" />
  54. <Reference Include="System.Windows.Forms" />
  55. <Reference Include="System.Xml.Linq" />
  56. <Reference Include="System.Data.DataSetExtensions" />
  57. <Reference Include="Microsoft.CSharp" />
  58. <Reference Include="System.Data" />
  59. <Reference Include="System.Xml" />
  60. </ItemGroup>
  61. <ItemGroup>
  62. <Compile Include="BaseObject.cs" />
  63. <Compile Include="MadVr\IMadVRInfo.cs" />
  64. <Compile Include="KnownGuid\AudioRender.cs" />
  65. <Compile Include="Graph.cs" />
  66. <Compile Include="KnownGuid\MediaSubTypeGuids.cs" />
  67. <Compile Include="KnownGuid\Misc.cs" />
  68. <Compile Include="Properties\AssemblyInfo.cs" />
  69. <Compile Include="KnownGuid\Spliter.cs" />
  70. <Compile Include="KnownGuid\Vfw.cs" />
  71. <Compile Include="VideoCapture.cs" />
  72. <Compile Include="VideoPlay.cs" />
  73. <Compile Include="KnownGuid\VideoRender.cs" />
  74. <Compile Include="VideoInControl.cs" />
  75. </ItemGroup>
  76. <ItemGroup>
  77. <ProjectReference Include="..\DSFiltersNET\BaseClasses\BaseClasses.csproj">
  78. <Project>{2a8e8af5-74e7-49db-a42e-9360fa7a6cc4}</Project>
  79. <Name>BaseClasses</Name>
  80. </ProjectReference>
  81. <ProjectReference Include="..\DSFiltersNET\ExampleFilters\ExampleFilters.csproj">
  82. <Project>{02d8455f-ddc1-4bc0-b85c-246cf8fd2a36}</Project>
  83. <Name>ExampleFilters</Name>
  84. </ProjectReference>
  85. </ItemGroup>
  86. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  87. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  88. Other similar extension points exist, see Microsoft.Common.targets.
  89. <Target Name="BeforeBuild">
  90. </Target>
  91. <Target Name="AfterBuild">
  92. </Target>
  93. -->
  94. </Project>