SharpLibHid.csproj
author StephaneLenclud
Sun, 15 Mar 2015 14:07:17 +0100
changeset 75 e8bb372ae58b
child 79 cdc5f8f1b79e
permissions -rw-r--r--
Renaming demo application to HID Demo.
StephaneLenclud@74
     1
<?xml version="1.0" encoding="utf-8"?>
StephaneLenclud@74
     2
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
StephaneLenclud@74
     3
  <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
StephaneLenclud@74
     4
  <PropertyGroup>
StephaneLenclud@74
     5
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
StephaneLenclud@74
     6
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
StephaneLenclud@74
     7
    <ProjectGuid>{4F3F96E6-668A-488E-BA0C-ED249AFACE9E}</ProjectGuid>
StephaneLenclud@74
     8
    <OutputType>Library</OutputType>
StephaneLenclud@74
     9
    <AppDesignerFolder>Properties</AppDesignerFolder>
StephaneLenclud@74
    10
    <RootNamespace>SharpLibHid</RootNamespace>
StephaneLenclud@74
    11
    <AssemblyName>SharpLibHid</AssemblyName>
StephaneLenclud@74
    12
    <TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
StephaneLenclud@74
    13
    <FileAlignment>512</FileAlignment>
StephaneLenclud@74
    14
    <TargetFrameworkProfile />
StephaneLenclud@74
    15
  </PropertyGroup>
StephaneLenclud@74
    16
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
StephaneLenclud@74
    17
    <DebugSymbols>true</DebugSymbols>
StephaneLenclud@74
    18
    <DebugType>full</DebugType>
StephaneLenclud@74
    19
    <Optimize>false</Optimize>
StephaneLenclud@74
    20
    <OutputPath>bin\Debug\</OutputPath>
StephaneLenclud@74
    21
    <DefineConstants>DEBUG;TRACE</DefineConstants>
StephaneLenclud@74
    22
    <ErrorReport>prompt</ErrorReport>
StephaneLenclud@74
    23
    <WarningLevel>4</WarningLevel>
StephaneLenclud@74
    24
    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
StephaneLenclud@74
    25
  </PropertyGroup>
StephaneLenclud@74
    26
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
StephaneLenclud@74
    27
    <DebugType>pdbonly</DebugType>
StephaneLenclud@74
    28
    <Optimize>true</Optimize>
StephaneLenclud@74
    29
    <OutputPath>bin\Release\</OutputPath>
StephaneLenclud@74
    30
    <DefineConstants>TRACE</DefineConstants>
StephaneLenclud@74
    31
    <ErrorReport>prompt</ErrorReport>
StephaneLenclud@74
    32
    <WarningLevel>4</WarningLevel>
StephaneLenclud@74
    33
  </PropertyGroup>
StephaneLenclud@74
    34
  <ItemGroup>
StephaneLenclud@74
    35
    <Reference Include="System" />
StephaneLenclud@74
    36
    <Reference Include="System.Core" />
StephaneLenclud@74
    37
    <Reference Include="System.Windows.Forms" />
StephaneLenclud@74
    38
    <Reference Include="System.Xml.Linq" />
StephaneLenclud@74
    39
    <Reference Include="System.Data.DataSetExtensions" />
StephaneLenclud@74
    40
    <Reference Include="Microsoft.CSharp" />
StephaneLenclud@74
    41
    <Reference Include="System.Data" />
StephaneLenclud@74
    42
    <Reference Include="System.Xml" />
StephaneLenclud@74
    43
  </ItemGroup>
StephaneLenclud@74
    44
  <ItemGroup>
StephaneLenclud@74
    45
    <Compile Include="HidDevice.cs" />
StephaneLenclud@74
    46
    <Compile Include="HidEvent.cs" />
StephaneLenclud@74
    47
    <Compile Include="HidHandler.cs" />
StephaneLenclud@74
    48
    <Compile Include="HidUsageTables.cs" />
StephaneLenclud@74
    49
    <Compile Include="HidUtils.cs" />
StephaneLenclud@74
    50
    <Compile Include="Properties\AssemblyInfo.cs" />
StephaneLenclud@74
    51
    <Compile Include="RawInput.cs" />
StephaneLenclud@74
    52
    <Compile Include="Win32AppCommand.cs" />
StephaneLenclud@74
    53
    <Compile Include="Win32CreateFile.cs" />
StephaneLenclud@74
    54
    <Compile Include="Win32Hid.cs" />
StephaneLenclud@74
    55
    <Compile Include="Win32RawInput.cs" />
StephaneLenclud@74
    56
  </ItemGroup>
StephaneLenclud@74
    57
  <ItemGroup>
StephaneLenclud@74
    58
    <COMReference Include="stdole">
StephaneLenclud@74
    59
      <Guid>{00020430-0000-0000-C000-000000000046}</Guid>
StephaneLenclud@74
    60
      <VersionMajor>2</VersionMajor>
StephaneLenclud@74
    61
      <VersionMinor>0</VersionMinor>
StephaneLenclud@74
    62
      <Lcid>0</Lcid>
StephaneLenclud@74
    63
      <WrapperTool>primary</WrapperTool>
StephaneLenclud@74
    64
      <Isolated>False</Isolated>
StephaneLenclud@74
    65
      <EmbedInteropTypes>True</EmbedInteropTypes>
StephaneLenclud@74
    66
    </COMReference>
StephaneLenclud@74
    67
  </ItemGroup>
StephaneLenclud@74
    68
  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
StephaneLenclud@74
    69
  <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
StephaneLenclud@74
    70
       Other similar extension points exist, see Microsoft.Common.targets.
StephaneLenclud@74
    71
  <Target Name="BeforeBuild">
StephaneLenclud@74
    72
  </Target>
StephaneLenclud@74
    73
  <Target Name="AfterBuild">
StephaneLenclud@74
    74
  </Target>
StephaneLenclud@74
    75
  -->
StephaneLenclud@74
    76
</Project>