HidSharp.csproj 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  6. <ProductVersion>8.0.30703</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{0DB86674-2A7B-4BDC-93C1-3F7DC771426C}</ProjectGuid>
  9. <OutputType>Library</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>HidSharp</RootNamespace>
  12. <AssemblyName>HidSharp</AssemblyName>
  13. <FileAlignment>512</FileAlignment>
  14. <FileUpgradeFlags>
  15. </FileUpgradeFlags>
  16. <UpgradeBackupLocation>
  17. </UpgradeBackupLocation>
  18. <OldToolsVersion>3.5</OldToolsVersion>
  19. <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
  20. </PropertyGroup>
  21. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  22. <DebugSymbols>true</DebugSymbols>
  23. <DebugType>full</DebugType>
  24. <Optimize>false</Optimize>
  25. <OutputPath>..\bin\</OutputPath>
  26. <DefineConstants>DEBUG;TRACE</DefineConstants>
  27. <ErrorReport>prompt</ErrorReport>
  28. <WarningLevel>4</WarningLevel>
  29. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  30. <RegisterForComInterop>false</RegisterForComInterop>
  31. <DocumentationFile>..\bin\HidSharp.XML</DocumentationFile>
  32. </PropertyGroup>
  33. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  34. <DebugType>pdbonly</DebugType>
  35. <Optimize>true</Optimize>
  36. <OutputPath>..\bin\</OutputPath>
  37. <DefineConstants>TRACE</DefineConstants>
  38. <ErrorReport>prompt</ErrorReport>
  39. <WarningLevel>4</WarningLevel>
  40. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  41. <RegisterForComInterop>true</RegisterForComInterop>
  42. <DocumentationFile>..\bin\HidSharp.XML</DocumentationFile>
  43. </PropertyGroup>
  44. <ItemGroup>
  45. <Reference Include="System" />
  46. </ItemGroup>
  47. <ItemGroup>
  48. <Compile Include="AsyncResult.cs" />
  49. <Compile Include="Throw.cs" />
  50. <Compile Include="HidDevice.cs" />
  51. <Compile Include="HidDeviceLoader.cs" />
  52. <Compile Include="HidStream.cs" />
  53. <Compile Include="Platform\HidSelector.cs" />
  54. <Compile Include="Platform\HidManager.cs" />
  55. <Compile Include="Platform\Utf8Marshaler.cs" />
  56. <Compile Include="Platform\Windows\NativeMethods.cs" />
  57. <Compile Include="Platform\Windows\WinHidDevice.cs" />
  58. <Compile Include="Platform\Windows\WinHidManager.cs" />
  59. <Compile Include="Platform\Windows\WinHidStream.cs" />
  60. <Compile Include="Platform\Linux\NativeMethods.cs" />
  61. <Compile Include="Platform\Linux\LinuxHidDevice.cs" />
  62. <Compile Include="Platform\Linux\LinuxHidManager.cs" />
  63. <Compile Include="Platform\Linux\LinuxHidStream.cs" />
  64. <Compile Include="Platform\MacOS\NativeMethods.cs" />
  65. <Compile Include="Platform\MacOS\MacHidDevice.cs" />
  66. <Compile Include="Platform\MacOS\MacHidManager.cs" />
  67. <Compile Include="Platform\MacOS\MacHidStream.cs" />
  68. <Compile Include="Platform\Libusb\NativeMethods.cs" />
  69. <Compile Include="Platform\Libusb\LibusbHidManager.cs" />
  70. <Compile Include="Platform\Unsupported\UnsupportedHidManager.cs" />
  71. <Compile Include="Properties\AssemblyInfo.cs" />
  72. <Compile Include="ReportDescriptors\CollectionType.cs" />
  73. <Compile Include="ReportDescriptors\DataMainItemFlags.cs" />
  74. <Compile Include="ReportDescriptors\GlobalItemTag.cs" />
  75. <Compile Include="ReportDescriptors\Parser\LocalIndexes.cs" />
  76. <Compile Include="ReportDescriptors\LocalItemTag.cs" />
  77. <Compile Include="ReportDescriptors\EncodedItem.cs" />
  78. <Compile Include="ReportDescriptors\MainItemTag.cs" />
  79. <Compile Include="ReportDescriptors\ItemType.cs" />
  80. <Compile Include="ReportDescriptors\Parser\IndexBase.cs" />
  81. <Compile Include="ReportDescriptors\Parser\IndexList.cs" />
  82. <Compile Include="ReportDescriptors\Parser\IndexRange.cs" />
  83. <Compile Include="ReportDescriptors\Parser\Report.cs" />
  84. <Compile Include="ReportDescriptors\Parser\ReportCollection.cs" />
  85. <Compile Include="ReportDescriptors\Parser\ReportDescriptorParser.cs" />
  86. <Compile Include="ReportDescriptors\Parser\ReportMainItem.cs" />
  87. <Compile Include="ReportDescriptors\Parser\ReportSegment.cs" />
  88. <Compile Include="ReportDescriptors\Parser\ReportType.cs" />
  89. <Compile Include="ReportDescriptors\Units\CurrentUnit.cs" />
  90. <Compile Include="ReportDescriptors\Units\LengthUnit.cs" />
  91. <Compile Include="ReportDescriptors\Units\LuminousIntensityUnit.cs" />
  92. <Compile Include="ReportDescriptors\Units\MassUnit.cs" />
  93. <Compile Include="ReportDescriptors\Units\TemperatureUnit.cs" />
  94. <Compile Include="ReportDescriptors\Units\TimeUnit.cs" />
  95. <Compile Include="ReportDescriptors\Units\Unit.cs" />
  96. <Compile Include="ReportDescriptors\Units\UnitSystem.cs" />
  97. </ItemGroup>
  98. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  99. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  100. Other similar extension points exist, see Microsoft.Common.targets.
  101. <Target Name="BeforeBuild">
  102. </Target>
  103. <Target Name="AfterBuild">
  104. </Target>
  105. -->
  106. <ItemGroup />
  107. </Project>