DreamCheekyBTN.csproj 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  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)' == '' ">x86</Platform>
  6. <ProductVersion>8.0.30703</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{3AC3E8E6-F4BE-4EC9-BBC3-3C1BFD8D213E}</ProjectGuid>
  9. <OutputType>Exe</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>DreamCheekyUSB</RootNamespace>
  12. <AssemblyName>DreamCheekyBTN</AssemblyName>
  13. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  14. <FileAlignment>512</FileAlignment>
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
  17. <PlatformTarget>x86</PlatformTarget>
  18. <DebugSymbols>true</DebugSymbols>
  19. <DebugType>full</DebugType>
  20. <Optimize>false</Optimize>
  21. <OutputPath>bin\Debug\</OutputPath>
  22. <DefineConstants>DEBUG;TRACE</DefineConstants>
  23. <ErrorReport>prompt</ErrorReport>
  24. <WarningLevel>4</WarningLevel>
  25. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  26. </PropertyGroup>
  27. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
  28. <PlatformTarget>x86</PlatformTarget>
  29. <DebugType>pdbonly</DebugType>
  30. <Optimize>true</Optimize>
  31. <OutputPath>bin\Release\</OutputPath>
  32. <DefineConstants>TRACE</DefineConstants>
  33. <ErrorReport>prompt</ErrorReport>
  34. <WarningLevel>4</WarningLevel>
  35. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  36. </PropertyGroup>
  37. <PropertyGroup>
  38. <ApplicationIcon>1347052316_system-red.ico</ApplicationIcon>
  39. </PropertyGroup>
  40. <ItemGroup>
  41. <Reference Include="System" />
  42. <Reference Include="System.Core" />
  43. <Reference Include="System.Windows.Forms" />
  44. <Reference Include="System.Xml.Linq" />
  45. <Reference Include="System.Data.DataSetExtensions" />
  46. <Reference Include="Microsoft.CSharp" />
  47. <Reference Include="System.Data" />
  48. <Reference Include="System.Xml" />
  49. </ItemGroup>
  50. <ItemGroup>
  51. <Compile Include="DreamCheekyBTN.cs" />
  52. <Compile Include="Program.cs" />
  53. <Compile Include="Properties\AssemblyInfo.cs" />
  54. <Compile Include="DreamCheekyBigRedBTN.cs" />
  55. <Compile Include="HidSharp\AsyncResult.cs" />
  56. <Compile Include="HidSharp\HidDevice.cs" />
  57. <Compile Include="HidSharp\HidDeviceLoader.cs" />
  58. <Compile Include="HidSharp\HidStream.cs" />
  59. <Compile Include="HidSharp\Throw.cs" />
  60. <Compile Include="HidSharp\Platform\HidManager.cs" />
  61. <Compile Include="HidSharp\Platform\HidSelector.cs" />
  62. <Compile Include="HidSharp\Platform\Utf8Marshaler.cs" />
  63. <Compile Include="HidSharp\Platform\Libusb\LibusbHidManager.cs" />
  64. <Compile Include="HidSharp\Platform\Libusb\NativeMethods.cs" />
  65. <Compile Include="HidSharp\Platform\Linux\LinuxHidDevice.cs" />
  66. <Compile Include="HidSharp\Platform\Linux\LinuxHidManager.cs" />
  67. <Compile Include="HidSharp\Platform\Linux\LinuxHidStream.cs" />
  68. <Compile Include="HidSharp\Platform\Linux\NativeMethods.cs" />
  69. <Compile Include="HidSharp\Platform\MacOS\MacHidDevice.cs" />
  70. <Compile Include="HidSharp\Platform\MacOS\MacHidManager.cs" />
  71. <Compile Include="HidSharp\Platform\MacOS\MacHidStream.cs" />
  72. <Compile Include="HidSharp\Platform\MacOS\NativeMethods.cs" />
  73. <Compile Include="HidSharp\Platform\Unsupported\UnsupportedHidManager.cs" />
  74. <Compile Include="HidSharp\Platform\Windows\NativeMethods.cs" />
  75. <Compile Include="HidSharp\Platform\Windows\WinHidDevice.cs" />
  76. <Compile Include="HidSharp\Platform\Windows\WinHidManager.cs" />
  77. <Compile Include="HidSharp\Platform\Windows\WinHidStream.cs" />
  78. <Compile Include="HidSharp\ReportDescriptors\CollectionType.cs" />
  79. <Compile Include="HidSharp\ReportDescriptors\DataMainItemFlags.cs" />
  80. <Compile Include="HidSharp\ReportDescriptors\EncodedItem.cs" />
  81. <Compile Include="HidSharp\ReportDescriptors\GlobalItemTag.cs" />
  82. <Compile Include="HidSharp\ReportDescriptors\ItemType.cs" />
  83. <Compile Include="HidSharp\ReportDescriptors\LocalItemTag.cs" />
  84. <Compile Include="HidSharp\ReportDescriptors\MainItemTag.cs" />
  85. <Compile Include="HidSharp\ReportDescriptors\Parser\IndexBase.cs" />
  86. <Compile Include="HidSharp\ReportDescriptors\Parser\IndexList.cs" />
  87. <Compile Include="HidSharp\ReportDescriptors\Parser\IndexRange.cs" />
  88. <Compile Include="HidSharp\ReportDescriptors\Parser\LocalIndexes.cs" />
  89. <Compile Include="HidSharp\ReportDescriptors\Parser\Report.cs" />
  90. <Compile Include="HidSharp\ReportDescriptors\Parser\ReportCollection.cs" />
  91. <Compile Include="HidSharp\ReportDescriptors\Parser\ReportDescriptorParser.cs" />
  92. <Compile Include="HidSharp\ReportDescriptors\Parser\ReportMainItem.cs" />
  93. <Compile Include="HidSharp\ReportDescriptors\Parser\ReportSegment.cs" />
  94. <Compile Include="HidSharp\ReportDescriptors\Parser\ReportType.cs" />
  95. <Compile Include="HidSharp\ReportDescriptors\Units\CurrentUnit.cs" />
  96. <Compile Include="HidSharp\ReportDescriptors\Units\LengthUnit.cs" />
  97. <Compile Include="HidSharp\ReportDescriptors\Units\LuminousIntensityUnit.cs" />
  98. <Compile Include="HidSharp\ReportDescriptors\Units\MassUnit.cs" />
  99. <Compile Include="HidSharp\ReportDescriptors\Units\TemperatureUnit.cs" />
  100. <Compile Include="HidSharp\ReportDescriptors\Units\TimeUnit.cs" />
  101. <Compile Include="HidSharp\ReportDescriptors\Units\Unit.cs" />
  102. <Compile Include="HidSharp\ReportDescriptors\Units\UnitSystem.cs" />
  103. </ItemGroup>
  104. <ItemGroup>
  105. <Content Include="1347052316_system-red.ico" />
  106. <Content Include="Readme.txt">
  107. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  108. </Content>
  109. </ItemGroup>
  110. <ItemGroup>
  111. <None Include="AutoHotkey.ahk">
  112. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  113. </None>
  114. <None Include="HidSharp\HidSharp.csproj" />
  115. <None Include="HidSharp\obj\Debug\HidSharp.csproj.FilesWrittenAbsolute.txt" />
  116. <None Include="HidSharp\obj\Debug\HidSharp.dll" />
  117. <None Include="HidSharp\obj\Debug\HidSharp.dll.mdb" />
  118. </ItemGroup>
  119. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  120. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  121. Other similar extension points exist, see Microsoft.Common.targets.
  122. <Target Name="BeforeBuild">
  123. </Target>
  124. <Target Name="AfterBuild">
  125. </Target>
  126. -->
  127. <ItemGroup>
  128. <Folder Include="HidSharp\" />
  129. </ItemGroup>
  130. </Project>