cec-config-gui: added some basic test commands and device information
[deb_libcec.git] / src / cec-config-gui / cec-config-gui.csproj
1 <?xml version="1.0" encoding="utf-8"?>
2 <Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
4 <DebugSymbols>true</DebugSymbols>
5 <OutputPath>..\..\build\</OutputPath>
6 <DefineConstants>DEBUG;TRACE</DefineConstants>
7 <DebugType>full</DebugType>
8 <PlatformTarget>x64</PlatformTarget>
9 <ErrorReport>prompt</ErrorReport>
10 </PropertyGroup>
11 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
12 <OutputPath>..\..\build\</OutputPath>
13 <DefineConstants>TRACE</DefineConstants>
14 <Optimize>true</Optimize>
15 <DebugType>pdbonly</DebugType>
16 <PlatformTarget>x64</PlatformTarget>
17 <ErrorReport>prompt</ErrorReport>
18 </PropertyGroup>
19 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
20 <DebugSymbols>true</DebugSymbols>
21 <OutputPath>..\..\build\</OutputPath>
22 <DefineConstants>DEBUG;TRACE</DefineConstants>
23 <DebugType>full</DebugType>
24 <PlatformTarget>x86</PlatformTarget>
25 <ErrorReport>prompt</ErrorReport>
26 </PropertyGroup>
27 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
28 <OutputPath>..\..\build\</OutputPath>
29 <DefineConstants>TRACE</DefineConstants>
30 <Optimize>true</Optimize>
31 <DebugType>pdbonly</DebugType>
32 <PlatformTarget>x86</PlatformTarget>
33 <ErrorReport>prompt</ErrorReport>
34 </PropertyGroup>
35 <PropertyGroup>
36 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
37 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
38 <ProductVersion>9.0.21022</ProductVersion>
39 <SchemaVersion>2.0</SchemaVersion>
40 <ProjectGuid>{58C106FE-C159-46D3-97E1-73AB83232670}</ProjectGuid>
41 <OutputType>WinExe</OutputType>
42 <AppDesignerFolder>Properties</AppDesignerFolder>
43 <RootNamespace>CecConfigGui</RootNamespace>
44 <AssemblyName>cec-config-gui</AssemblyName>
45 <TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
46 <FileAlignment>512</FileAlignment>
47 </PropertyGroup>
48 <ItemGroup>
49 <Reference Include="System" />
50 <Reference Include="System.Data" />
51 <Reference Include="System.Deployment" />
52 <Reference Include="System.Drawing" />
53 <Reference Include="System.Windows.Forms" />
54 <Reference Include="System.Xml" />
55 </ItemGroup>
56 <ItemGroup>
57 <Compile Include="actions\ConnectToDevice.cs" />
58 <Compile Include="actions\SendActivateSource.cs" />
59 <Compile Include="actions\SendImageViewOn.cs" />
60 <Compile Include="actions\SendStandby.cs" />
61 <Compile Include="actions\ShowDeviceInfo.cs" />
62 <Compile Include="actions\UpdateConnectedDevice.cs" />
63 <Compile Include="actions\UpdatePhysicalAddress.cs" />
64 <Compile Include="CecButtonConfig.cs" />
65 <Compile Include="CecConfigGUI.cs">
66 <SubType>Form</SubType>
67 </Compile>
68 <Compile Include="CecConfigGUI.Designer.cs">
69 <DependentUpon>CecConfigGUI.cs</DependentUpon>
70 </Compile>
71 <Compile Include="DeviceInformation.cs">
72 <SubType>Form</SubType>
73 </Compile>
74 <Compile Include="DeviceInformation.Designer.cs">
75 <DependentUpon>DeviceInformation.cs</DependentUpon>
76 </Compile>
77 <Compile Include="Program.cs" />
78 <Compile Include="Properties\AssemblyInfo.cs" />
79 <EmbeddedResource Include="CecConfigGUI.resx">
80 <DependentUpon>CecConfigGUI.cs</DependentUpon>
81 <SubType>Designer</SubType>
82 </EmbeddedResource>
83 <EmbeddedResource Include="DeviceInformation.resx">
84 <DependentUpon>DeviceInformation.cs</DependentUpon>
85 <SubType>Designer</SubType>
86 </EmbeddedResource>
87 <EmbeddedResource Include="Properties\Resources.resx">
88 <Generator>ResXFileCodeGenerator</Generator>
89 <LastGenOutput>Resources.Designer.cs</LastGenOutput>
90 <SubType>Designer</SubType>
91 </EmbeddedResource>
92 <Compile Include="Properties\Resources.Designer.cs">
93 <AutoGen>True</AutoGen>
94 <DependentUpon>Resources.resx</DependentUpon>
95 <DesignTime>True</DesignTime>
96 </Compile>
97 <None Include="Properties\DataSources\CecButtonConfig.datasource" />
98 <None Include="Properties\Settings.settings">
99 <Generator>SettingsSingleFileGenerator</Generator>
100 <LastGenOutput>Settings.Designer.cs</LastGenOutput>
101 </None>
102 <Compile Include="Properties\Settings.Designer.cs">
103 <AutoGen>True</AutoGen>
104 <DependentUpon>Settings.settings</DependentUpon>
105 <DesignTimeSharedInput>True</DesignTimeSharedInput>
106 </Compile>
107 <Compile Include="actions\UpdateEvent.cs" />
108 </ItemGroup>
109 <ItemGroup>
110 <ProjectReference Include="..\..\project\LibCecSharp.vcproj">
111 <Project>{E54D4581-CD59-4687-BB10-694B8192EABA}</Project>
112 <Name>LibCecSharp</Name>
113 </ProjectReference>
114 </ItemGroup>
115 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
116 <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
117 Other similar extension points exist, see Microsoft.Common.targets.
118 <Target Name="BeforeBuild">
119 </Target>
120 <Target Name="AfterBuild">
121 </Target>
122 -->
123 </Project>