PowerManager/PowerManager.vcxproj
author Stephane Lenclud
Fri, 25 Sep 2015 12:28:47 +0200
changeset 161 7b19bea5d73a
child 163 0c5930689ea1
permissions -rw-r--r--
CEC TV power on and standby working.
StephaneLenclud@159
     1
<?xml version="1.0" encoding="utf-8"?>
StephaneLenclud@159
     2
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
StephaneLenclud@159
     3
  <ItemGroup Label="ProjectConfigurations">
StephaneLenclud@159
     4
    <ProjectConfiguration Include="Debug|Win32">
StephaneLenclud@159
     5
      <Configuration>Debug</Configuration>
StephaneLenclud@159
     6
      <Platform>Win32</Platform>
StephaneLenclud@159
     7
    </ProjectConfiguration>
StephaneLenclud@159
     8
    <ProjectConfiguration Include="Release|Win32">
StephaneLenclud@159
     9
      <Configuration>Release</Configuration>
StephaneLenclud@159
    10
      <Platform>Win32</Platform>
StephaneLenclud@159
    11
    </ProjectConfiguration>
StephaneLenclud@159
    12
    <ProjectConfiguration Include="Debug|x64">
StephaneLenclud@159
    13
      <Configuration>Debug</Configuration>
StephaneLenclud@159
    14
      <Platform>x64</Platform>
StephaneLenclud@159
    15
    </ProjectConfiguration>
StephaneLenclud@159
    16
    <ProjectConfiguration Include="Release|x64">
StephaneLenclud@159
    17
      <Configuration>Release</Configuration>
StephaneLenclud@159
    18
      <Platform>x64</Platform>
StephaneLenclud@159
    19
    </ProjectConfiguration>
StephaneLenclud@159
    20
  </ItemGroup>
StephaneLenclud@159
    21
  <PropertyGroup Label="Globals">
StephaneLenclud@159
    22
    <ProjectGuid>{C174F23D-3055-49BC-B6B0-563011AF624D}</ProjectGuid>
StephaneLenclud@159
    23
    <TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
StephaneLenclud@159
    24
    <Keyword>ManagedCProj</Keyword>
StephaneLenclud@159
    25
    <RootNamespace>PowerManager</RootNamespace>
StephaneLenclud@159
    26
    <WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion>
StephaneLenclud@159
    27
  </PropertyGroup>
StephaneLenclud@159
    28
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
StephaneLenclud@159
    29
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
StephaneLenclud@159
    30
    <ConfigurationType>DynamicLibrary</ConfigurationType>
StephaneLenclud@159
    31
    <UseDebugLibraries>true</UseDebugLibraries>
StephaneLenclud@159
    32
    <PlatformToolset>v140</PlatformToolset>
StephaneLenclud@159
    33
    <CLRSupport>true</CLRSupport>
StephaneLenclud@159
    34
    <CharacterSet>Unicode</CharacterSet>
StephaneLenclud@159
    35
  </PropertyGroup>
StephaneLenclud@159
    36
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
StephaneLenclud@159
    37
    <ConfigurationType>DynamicLibrary</ConfigurationType>
StephaneLenclud@159
    38
    <UseDebugLibraries>false</UseDebugLibraries>
StephaneLenclud@159
    39
    <PlatformToolset>v140</PlatformToolset>
StephaneLenclud@159
    40
    <CLRSupport>true</CLRSupport>
StephaneLenclud@159
    41
    <CharacterSet>Unicode</CharacterSet>
StephaneLenclud@159
    42
  </PropertyGroup>
StephaneLenclud@159
    43
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
StephaneLenclud@159
    44
    <ConfigurationType>DynamicLibrary</ConfigurationType>
StephaneLenclud@159
    45
    <UseDebugLibraries>true</UseDebugLibraries>
StephaneLenclud@159
    46
    <PlatformToolset>v140</PlatformToolset>
StephaneLenclud@159
    47
    <CLRSupport>true</CLRSupport>
StephaneLenclud@159
    48
    <CharacterSet>Unicode</CharacterSet>
StephaneLenclud@159
    49
  </PropertyGroup>
StephaneLenclud@159
    50
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
StephaneLenclud@159
    51
    <ConfigurationType>DynamicLibrary</ConfigurationType>
StephaneLenclud@159
    52
    <UseDebugLibraries>false</UseDebugLibraries>
StephaneLenclud@159
    53
    <PlatformToolset>v140</PlatformToolset>
StephaneLenclud@159
    54
    <CLRSupport>true</CLRSupport>
StephaneLenclud@159
    55
    <CharacterSet>Unicode</CharacterSet>
StephaneLenclud@159
    56
  </PropertyGroup>
StephaneLenclud@159
    57
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
StephaneLenclud@159
    58
  <ImportGroup Label="ExtensionSettings">
StephaneLenclud@159
    59
  </ImportGroup>
StephaneLenclud@159
    60
  <ImportGroup Label="Shared">
StephaneLenclud@159
    61
  </ImportGroup>
StephaneLenclud@159
    62
  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
StephaneLenclud@159
    63
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
StephaneLenclud@159
    64
  </ImportGroup>
StephaneLenclud@159
    65
  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
StephaneLenclud@159
    66
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
StephaneLenclud@159
    67
  </ImportGroup>
StephaneLenclud@159
    68
  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
StephaneLenclud@159
    69
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
StephaneLenclud@159
    70
  </ImportGroup>
StephaneLenclud@159
    71
  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
StephaneLenclud@159
    72
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
StephaneLenclud@159
    73
  </ImportGroup>
StephaneLenclud@159
    74
  <PropertyGroup Label="UserMacros" />
StephaneLenclud@159
    75
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
StephaneLenclud@159
    76
    <LinkIncremental>true</LinkIncremental>
StephaneLenclud@159
    77
  </PropertyGroup>
StephaneLenclud@159
    78
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
StephaneLenclud@159
    79
    <LinkIncremental>true</LinkIncremental>
StephaneLenclud@159
    80
  </PropertyGroup>
StephaneLenclud@159
    81
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
StephaneLenclud@159
    82
    <LinkIncremental>false</LinkIncremental>
StephaneLenclud@159
    83
  </PropertyGroup>
StephaneLenclud@159
    84
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
StephaneLenclud@159
    85
    <LinkIncremental>false</LinkIncremental>
StephaneLenclud@159
    86
  </PropertyGroup>
StephaneLenclud@159
    87
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
StephaneLenclud@159
    88
    <ClCompile>
StephaneLenclud@159
    89
      <WarningLevel>Level3</WarningLevel>
StephaneLenclud@159
    90
      <Optimization>Disabled</Optimization>
StephaneLenclud@159
    91
      <PreprocessorDefinitions>WIN32;_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
StephaneLenclud@159
    92
      <PrecompiledHeader>Use</PrecompiledHeader>
StephaneLenclud@159
    93
    </ClCompile>
StephaneLenclud@159
    94
    <Link>
StephaneLenclud@159
    95
      <GenerateDebugInformation>true</GenerateDebugInformation>
StephaneLenclud@159
    96
      <AdditionalDependencies>user32.lib</AdditionalDependencies>
StephaneLenclud@159
    97
    </Link>
StephaneLenclud@159
    98
  </ItemDefinitionGroup>
StephaneLenclud@159
    99
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
StephaneLenclud@159
   100
    <ClCompile>
StephaneLenclud@159
   101
      <WarningLevel>Level3</WarningLevel>
StephaneLenclud@159
   102
      <Optimization>Disabled</Optimization>
StephaneLenclud@159
   103
      <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
StephaneLenclud@159
   104
      <PrecompiledHeader>Use</PrecompiledHeader>
StephaneLenclud@159
   105
    </ClCompile>
StephaneLenclud@159
   106
    <Link>
StephaneLenclud@159
   107
      <GenerateDebugInformation>true</GenerateDebugInformation>
StephaneLenclud@159
   108
      <AdditionalDependencies />
StephaneLenclud@159
   109
    </Link>
StephaneLenclud@159
   110
  </ItemDefinitionGroup>
StephaneLenclud@159
   111
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
StephaneLenclud@159
   112
    <ClCompile>
StephaneLenclud@159
   113
      <WarningLevel>Level3</WarningLevel>
StephaneLenclud@159
   114
      <PreprocessorDefinitions>WIN32;NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
StephaneLenclud@159
   115
      <PrecompiledHeader>Use</PrecompiledHeader>
StephaneLenclud@159
   116
    </ClCompile>
StephaneLenclud@159
   117
    <Link>
StephaneLenclud@159
   118
      <GenerateDebugInformation>true</GenerateDebugInformation>
StephaneLenclud@159
   119
      <AdditionalDependencies>user32.lib</AdditionalDependencies>
StephaneLenclud@159
   120
    </Link>
StephaneLenclud@159
   121
  </ItemDefinitionGroup>
StephaneLenclud@159
   122
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
StephaneLenclud@159
   123
    <ClCompile>
StephaneLenclud@159
   124
      <WarningLevel>Level3</WarningLevel>
StephaneLenclud@159
   125
      <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
StephaneLenclud@159
   126
      <PrecompiledHeader>Use</PrecompiledHeader>
StephaneLenclud@159
   127
    </ClCompile>
StephaneLenclud@159
   128
    <Link>
StephaneLenclud@159
   129
      <GenerateDebugInformation>true</GenerateDebugInformation>
StephaneLenclud@159
   130
      <AdditionalDependencies />
StephaneLenclud@159
   131
    </Link>
StephaneLenclud@159
   132
  </ItemDefinitionGroup>
StephaneLenclud@159
   133
  <ItemGroup>
StephaneLenclud@159
   134
    <Reference Include="System" />
StephaneLenclud@159
   135
    <Reference Include="System.Data" />
StephaneLenclud@159
   136
    <Reference Include="System.Windows.Forms" />
StephaneLenclud@159
   137
    <Reference Include="System.Xml" />
StephaneLenclud@159
   138
  </ItemGroup>
StephaneLenclud@159
   139
  <ItemGroup>
StephaneLenclud@159
   140
    <ClInclude Include="PowerManager.h" />
StephaneLenclud@159
   141
    <ClInclude Include="resource.h" />
StephaneLenclud@159
   142
    <ClInclude Include="Stdafx.h" />
StephaneLenclud@159
   143
  </ItemGroup>
StephaneLenclud@159
   144
  <ItemGroup>
StephaneLenclud@159
   145
    <ClCompile Include="AssemblyInfo.cpp" />
StephaneLenclud@159
   146
    <ClCompile Include="PowerManager.cpp" />
StephaneLenclud@159
   147
    <ClCompile Include="Stdafx.cpp">
StephaneLenclud@159
   148
      <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Create</PrecompiledHeader>
StephaneLenclud@159
   149
      <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Create</PrecompiledHeader>
StephaneLenclud@159
   150
      <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Create</PrecompiledHeader>
StephaneLenclud@159
   151
      <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Create</PrecompiledHeader>
StephaneLenclud@159
   152
    </ClCompile>
StephaneLenclud@159
   153
  </ItemGroup>
StephaneLenclud@159
   154
  <ItemGroup>
StephaneLenclud@159
   155
    <Text Include="ReadMe.txt" />
StephaneLenclud@159
   156
  </ItemGroup>
StephaneLenclud@159
   157
  <ItemGroup>
StephaneLenclud@159
   158
    <ResourceCompile Include="app.rc" />
StephaneLenclud@159
   159
  </ItemGroup>
StephaneLenclud@159
   160
  <ItemGroup>
StephaneLenclud@159
   161
    <Image Include="app.ico" />
StephaneLenclud@159
   162
  </ItemGroup>
StephaneLenclud@159
   163
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
StephaneLenclud@159
   164
  <ImportGroup Label="ExtensionTargets">
StephaneLenclud@159
   165
  </ImportGroup>
StephaneLenclud@159
   166
</Project>