source: trunk/Utilities/DirectShowReferenceSource/Sample/RegisterSources/RegisterSources.csproj @ 937

Last change on this file since 937 was 574, checked in by roman, 8 years ago

Binary update - registration as virtual source; C# code to register sources

File size: 3.8 KB
Line 
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>{1B5A4819-DBCB-4C3B-B72B-DBD9E760A67E}</ProjectGuid>
8    <OutputType>Exe</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>RegisterSources</RootNamespace>
11    <AssemblyName>RegisterSources</AssemblyName>
12    <TargetFrameworkVersion>v4.5</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|x64'">
35    <DebugSymbols>true</DebugSymbols>
36    <OutputPath>bin\x64\Debug\</OutputPath>
37    <DefineConstants>DEBUG;TRACE</DefineConstants>
38    <DebugType>full</DebugType>
39    <PlatformTarget>x64</PlatformTarget>
40    <ErrorReport>prompt</ErrorReport>
41    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
42    <Prefer32Bit>true</Prefer32Bit>
43  </PropertyGroup>
44  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
45    <OutputPath>bin\x64\Release\</OutputPath>
46    <DefineConstants>TRACE</DefineConstants>
47    <Optimize>true</Optimize>
48    <DebugType>pdbonly</DebugType>
49    <PlatformTarget>x64</PlatformTarget>
50    <ErrorReport>prompt</ErrorReport>
51    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
52    <Prefer32Bit>true</Prefer32Bit>
53  </PropertyGroup>
54  <ItemGroup>
55    <Reference Include="System" />
56    <Reference Include="System.Core" />
57    <Reference Include="System.Xml.Linq" />
58    <Reference Include="System.Data.DataSetExtensions" />
59    <Reference Include="Microsoft.CSharp" />
60    <Reference Include="System.Data" />
61    <Reference Include="System.Xml" />
62  </ItemGroup>
63  <ItemGroup>
64    <Compile Include="Program.cs" />
65    <Compile Include="Properties\AssemblyInfo.cs" />
66  </ItemGroup>
67  <ItemGroup>
68    <None Include="App.config" />
69  </ItemGroup>
70  <ItemGroup>
71    <COMReference Include="AlaxInfoReferenceSource">
72      <Guid>{9E3ABA93-C8D8-41D3-B39E-29508FDE5757}</Guid>
73      <VersionMajor>1</VersionMajor>
74      <VersionMinor>0</VersionMinor>
75      <Lcid>0</Lcid>
76      <WrapperTool>tlbimp</WrapperTool>
77      <Isolated>False</Isolated>
78      <EmbedInteropTypes>True</EmbedInteropTypes>
79    </COMReference>
80  </ItemGroup>
81  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
82  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
83       Other similar extension points exist, see Microsoft.Common.targets.
84  <Target Name="BeforeBuild">
85  </Target>
86  <Target Name="AfterBuild">
87  </Target>
88  -->
89</Project>
Note: See TracBrowser for help on using the repository browser.