SharpLibHid.csproj
changeset 74 e5e903ee681d
child 79 cdc5f8f1b79e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/SharpLibHid.csproj	Sun Mar 15 14:01:30 2015 +0100
     1.3 @@ -0,0 +1,76 @@
     1.4 +<?xml version="1.0" encoding="utf-8"?>
     1.5 +<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
     1.6 +  <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
     1.7 +  <PropertyGroup>
     1.8 +    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
     1.9 +    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
    1.10 +    <ProjectGuid>{4F3F96E6-668A-488E-BA0C-ED249AFACE9E}</ProjectGuid>
    1.11 +    <OutputType>Library</OutputType>
    1.12 +    <AppDesignerFolder>Properties</AppDesignerFolder>
    1.13 +    <RootNamespace>SharpLibHid</RootNamespace>
    1.14 +    <AssemblyName>SharpLibHid</AssemblyName>
    1.15 +    <TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
    1.16 +    <FileAlignment>512</FileAlignment>
    1.17 +    <TargetFrameworkProfile />
    1.18 +  </PropertyGroup>
    1.19 +  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
    1.20 +    <DebugSymbols>true</DebugSymbols>
    1.21 +    <DebugType>full</DebugType>
    1.22 +    <Optimize>false</Optimize>
    1.23 +    <OutputPath>bin\Debug\</OutputPath>
    1.24 +    <DefineConstants>DEBUG;TRACE</DefineConstants>
    1.25 +    <ErrorReport>prompt</ErrorReport>
    1.26 +    <WarningLevel>4</WarningLevel>
    1.27 +    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
    1.28 +  </PropertyGroup>
    1.29 +  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
    1.30 +    <DebugType>pdbonly</DebugType>
    1.31 +    <Optimize>true</Optimize>
    1.32 +    <OutputPath>bin\Release\</OutputPath>
    1.33 +    <DefineConstants>TRACE</DefineConstants>
    1.34 +    <ErrorReport>prompt</ErrorReport>
    1.35 +    <WarningLevel>4</WarningLevel>
    1.36 +  </PropertyGroup>
    1.37 +  <ItemGroup>
    1.38 +    <Reference Include="System" />
    1.39 +    <Reference Include="System.Core" />
    1.40 +    <Reference Include="System.Windows.Forms" />
    1.41 +    <Reference Include="System.Xml.Linq" />
    1.42 +    <Reference Include="System.Data.DataSetExtensions" />
    1.43 +    <Reference Include="Microsoft.CSharp" />
    1.44 +    <Reference Include="System.Data" />
    1.45 +    <Reference Include="System.Xml" />
    1.46 +  </ItemGroup>
    1.47 +  <ItemGroup>
    1.48 +    <Compile Include="HidDevice.cs" />
    1.49 +    <Compile Include="HidEvent.cs" />
    1.50 +    <Compile Include="HidHandler.cs" />
    1.51 +    <Compile Include="HidUsageTables.cs" />
    1.52 +    <Compile Include="HidUtils.cs" />
    1.53 +    <Compile Include="Properties\AssemblyInfo.cs" />
    1.54 +    <Compile Include="RawInput.cs" />
    1.55 +    <Compile Include="Win32AppCommand.cs" />
    1.56 +    <Compile Include="Win32CreateFile.cs" />
    1.57 +    <Compile Include="Win32Hid.cs" />
    1.58 +    <Compile Include="Win32RawInput.cs" />
    1.59 +  </ItemGroup>
    1.60 +  <ItemGroup>
    1.61 +    <COMReference Include="stdole">
    1.62 +      <Guid>{00020430-0000-0000-C000-000000000046}</Guid>
    1.63 +      <VersionMajor>2</VersionMajor>
    1.64 +      <VersionMinor>0</VersionMinor>
    1.65 +      <Lcid>0</Lcid>
    1.66 +      <WrapperTool>primary</WrapperTool>
    1.67 +      <Isolated>False</Isolated>
    1.68 +      <EmbedInteropTypes>True</EmbedInteropTypes>
    1.69 +    </COMReference>
    1.70 +  </ItemGroup>
    1.71 +  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
    1.72 +  <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
    1.73 +       Other similar extension points exist, see Microsoft.Common.targets.
    1.74 +  <Target Name="BeforeBuild">
    1.75 +  </Target>
    1.76 +  <Target Name="AfterBuild">
    1.77 +  </Target>
    1.78 +  -->
    1.79 +</Project>
    1.80 \ No newline at end of file