VideoPlayExample.csproj 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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>{784F9E63-CDEF-4E4B-AB2B-219641882EED}</ProjectGuid>
  8. <OutputType>WinExe</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>VideoPlayExample</RootNamespace>
  11. <AssemblyName>VideoPlayExample</AssemblyName>
  12. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. </PropertyGroup>
  15. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  16. <PlatformTarget>AnyCPU</PlatformTarget>
  17. <DebugSymbols>true</DebugSymbols>
  18. <DebugType>full</DebugType>
  19. <Optimize>false</Optimize>
  20. <OutputPath>bin\Debug\</OutputPath>
  21. <DefineConstants>DEBUG;TRACE</DefineConstants>
  22. <ErrorReport>prompt</ErrorReport>
  23. <WarningLevel>4</WarningLevel>
  24. </PropertyGroup>
  25. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  26. <PlatformTarget>AnyCPU</PlatformTarget>
  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)' == 'Debug|x86'">
  35. <DebugSymbols>true</DebugSymbols>
  36. <OutputPath>bin\x86\Debug\</OutputPath>
  37. <DefineConstants>DEBUG;TRACE</DefineConstants>
  38. <DebugType>full</DebugType>
  39. <PlatformTarget>x86</PlatformTarget>
  40. <ErrorReport>prompt</ErrorReport>
  41. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  42. </PropertyGroup>
  43. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
  44. <OutputPath>bin\x86\Release\</OutputPath>
  45. <DefineConstants>TRACE</DefineConstants>
  46. <Optimize>true</Optimize>
  47. <DebugType>pdbonly</DebugType>
  48. <PlatformTarget>x86</PlatformTarget>
  49. <ErrorReport>prompt</ErrorReport>
  50. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  51. </PropertyGroup>
  52. <ItemGroup>
  53. <Reference Include="System" />
  54. <Reference Include="System.Core" />
  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.Deployment" />
  60. <Reference Include="System.Drawing" />
  61. <Reference Include="System.Windows.Forms" />
  62. <Reference Include="System.Xml" />
  63. </ItemGroup>
  64. <ItemGroup>
  65. <Compile Include="MainForm.cs">
  66. <SubType>Form</SubType>
  67. </Compile>
  68. <Compile Include="MainForm.Designer.cs">
  69. <DependentUpon>MainForm.cs</DependentUpon>
  70. </Compile>
  71. <Compile Include="Program.cs" />
  72. <Compile Include="Properties\AssemblyInfo.cs" />
  73. <EmbeddedResource Include="MainForm.resx">
  74. <DependentUpon>MainForm.cs</DependentUpon>
  75. </EmbeddedResource>
  76. <EmbeddedResource Include="Properties\Resources.resx">
  77. <Generator>ResXFileCodeGenerator</Generator>
  78. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  79. <SubType>Designer</SubType>
  80. </EmbeddedResource>
  81. <Compile Include="Properties\Resources.Designer.cs">
  82. <AutoGen>True</AutoGen>
  83. <DependentUpon>Resources.resx</DependentUpon>
  84. <DesignTime>True</DesignTime>
  85. </Compile>
  86. <None Include="Properties\Settings.settings">
  87. <Generator>SettingsSingleFileGenerator</Generator>
  88. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  89. </None>
  90. <Compile Include="Properties\Settings.Designer.cs">
  91. <AutoGen>True</AutoGen>
  92. <DependentUpon>Settings.settings</DependentUpon>
  93. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  94. </Compile>
  95. </ItemGroup>
  96. <ItemGroup>
  97. <ProjectReference Include="..\DirectShowExampleLibrary\DirectShowExampleLibrary.csproj">
  98. <Project>{8f5cf8aa-480a-4865-84cc-3f7bbebb1cf2}</Project>
  99. <Name>DirectShowExampleLibrary</Name>
  100. </ProjectReference>
  101. </ItemGroup>
  102. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  103. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  104. Other similar extension points exist, see Microsoft.Common.targets.
  105. <Target Name="BeforeBuild">
  106. </Target>
  107. <Target Name="AfterBuild">
  108. </Target>
  109. -->
  110. </Project>