source: trunk/DirectShowSpy/Sample/FilterGraphText/FilterGraphText.csproj @ 200

Last change on this file since 200 was 200, checked in by roman, 11 years ago

Helper sample - solution and C# project (snippet)

File size: 3.4 KB
Line 
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>{35082D27-E067-4ABC-95C3-BE30E52BCBB3}</ProjectGuid>
8    <OutputType>Exe</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>FilterGraphText</RootNamespace>
11    <AssemblyName>FilterGraphText</AssemblyName>
12    <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
13    <FileAlignment>512</FileAlignment>
14  </PropertyGroup>
15  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
16    <PlatformTarget>x86</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  <ItemGroup>
35    <Reference Include="DirectShowLib-2005">
36      <HintPath>..\..\..\..\..\..\Libraries\DirectShowLibV2-1\lib\DirectShowLib-2005.dll</HintPath>
37    </Reference>
38    <Reference Include="System" />
39    <Reference Include="System.Core" />
40    <Reference Include="System.Xml.Linq" />
41    <Reference Include="System.Data.DataSetExtensions" />
42    <Reference Include="Microsoft.CSharp" />
43    <Reference Include="System.Data" />
44    <Reference Include="System.Xml" />
45  </ItemGroup>
46  <ItemGroup>
47    <Compile Include="Program.cs" />
48    <Compile Include="Properties\AssemblyInfo.cs" />
49  </ItemGroup>
50  <ItemGroup>
51    <None Include="App.config" />
52  </ItemGroup>
53  <ItemGroup>
54    <COMReference Include="AlaxInfoDirectShowSpy">
55      <Guid>{B9EC374B-834B-4DA9-BFB5-C1872CE736FF}</Guid>
56      <VersionMajor>1</VersionMajor>
57      <VersionMinor>0</VersionMinor>
58      <Lcid>0</Lcid>
59      <WrapperTool>tlbimp</WrapperTool>
60      <Isolated>False</Isolated>
61      <EmbedInteropTypes>True</EmbedInteropTypes>
62    </COMReference>
63    <COMReference Include="stdole">
64      <Guid>{00020430-0000-0000-C000-000000000046}</Guid>
65      <VersionMajor>2</VersionMajor>
66      <VersionMinor>0</VersionMinor>
67      <Lcid>0</Lcid>
68      <WrapperTool>primary</WrapperTool>
69      <Isolated>False</Isolated>
70      <EmbedInteropTypes>True</EmbedInteropTypes>
71    </COMReference>
72  </ItemGroup>
73  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
74  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
75       Other similar extension points exist, see Microsoft.Common.targets.
76  <Target Name="BeforeBuild">
77  </Target>
78  <Target Name="AfterBuild">
79  </Target>
80  -->
81</Project>
Note: See TracBrowser for help on using the repository browser.