SharpLibHid.csproj
author StephaneLenclud
Mon, 23 Mar 2015 13:08:31 +0100
changeset 89 f8cfba91e6cd
parent 82 312160defeac
permissions -rw-r--r--
Merge
     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>{4F3F96E6-668A-488E-BA0C-ED249AFACE9E}</ProjectGuid>
     8     <OutputType>Library</OutputType>
     9     <AppDesignerFolder>Properties</AppDesignerFolder>
    10     <RootNamespace>SharpLibHid</RootNamespace>
    11     <AssemblyName>SharpLibHid</AssemblyName>
    12     <TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
    13     <FileAlignment>512</FileAlignment>
    14     <TargetFrameworkProfile />
    15   </PropertyGroup>
    16   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
    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     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
    25   </PropertyGroup>
    26   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
    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     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
    34   </PropertyGroup>
    35   <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
    36     <DebugSymbols>true</DebugSymbols>
    37     <OutputPath>bin\x86\Debug\</OutputPath>
    38     <DefineConstants>DEBUG;TRACE</DefineConstants>
    39     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
    40     <DebugType>full</DebugType>
    41     <PlatformTarget>x86</PlatformTarget>
    42     <ErrorReport>prompt</ErrorReport>
    43     <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
    44   </PropertyGroup>
    45   <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
    46     <OutputPath>bin\x86\Release\</OutputPath>
    47     <DefineConstants>TRACE</DefineConstants>
    48     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
    49     <Optimize>true</Optimize>
    50     <DebugType>pdbonly</DebugType>
    51     <PlatformTarget>x86</PlatformTarget>
    52     <ErrorReport>prompt</ErrorReport>
    53     <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
    54   </PropertyGroup>
    55   <ItemGroup>
    56     <Reference Include="System" />
    57     <Reference Include="System.Core" />
    58     <Reference Include="System.Windows.Forms" />
    59     <Reference Include="System.Xml.Linq" />
    60     <Reference Include="System.Data.DataSetExtensions" />
    61     <Reference Include="Microsoft.CSharp" />
    62     <Reference Include="System.Data" />
    63     <Reference Include="System.Xml" />
    64   </ItemGroup>
    65   <ItemGroup>
    66     <Compile Include="Hid\HidDevice.cs">
    67       <SubType>Code</SubType>
    68     </Compile>
    69     <Compile Include="Hid\HidEvent.cs">
    70       <SubType>Code</SubType>
    71     </Compile>
    72     <Compile Include="Hid\HidHandler.cs">
    73       <SubType>Code</SubType>
    74     </Compile>
    75     <Compile Include="Hid\HidUsageTables.cs">
    76       <SubType>Code</SubType>
    77     </Compile>
    78     <Compile Include="Hid\HidUtils.cs">
    79       <SubType>Code</SubType>
    80     </Compile>
    81     <Compile Include="Properties\AssemblyInfo.cs" />
    82     <Compile Include="Win32\RawInput.cs" />
    83     <Compile Include="Win32\Win32AppCommand.cs" />
    84     <Compile Include="Win32\Win32CreateFile.cs" />
    85     <Compile Include="Win32\Win32Hid.cs" />
    86     <Compile Include="Win32\Win32RawInput.cs" />
    87   </ItemGroup>
    88   <ItemGroup>
    89     <COMReference Include="stdole">
    90       <Guid>{00020430-0000-0000-C000-000000000046}</Guid>
    91       <VersionMajor>2</VersionMajor>
    92       <VersionMinor>0</VersionMinor>
    93       <Lcid>0</Lcid>
    94       <WrapperTool>primary</WrapperTool>
    95       <Isolated>False</Isolated>
    96       <EmbedInteropTypes>True</EmbedInteropTypes>
    97     </COMReference>
    98   </ItemGroup>
    99   <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
   100   <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
   101        Other similar extension points exist, see Microsoft.Common.targets.
   102   <Target Name="BeforeBuild">
   103   </Target>
   104   <Target Name="AfterBuild">
   105   </Target>
   106   -->
   107 </Project>