| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- <?xml version="1.0" encoding="utf-8"?>
- <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <PropertyGroup>
- <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
- <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
- <ProductVersion>8.0.30703</ProductVersion>
- <SchemaVersion>2.0</SchemaVersion>
- <ProjectGuid>{0DB86674-2A7B-4BDC-93C1-3F7DC771426C}</ProjectGuid>
- <OutputType>Library</OutputType>
- <AppDesignerFolder>Properties</AppDesignerFolder>
- <RootNamespace>HidSharp</RootNamespace>
- <AssemblyName>HidSharp</AssemblyName>
- <FileAlignment>512</FileAlignment>
- <FileUpgradeFlags>
- </FileUpgradeFlags>
- <UpgradeBackupLocation>
- </UpgradeBackupLocation>
- <OldToolsVersion>3.5</OldToolsVersion>
- <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <DebugSymbols>true</DebugSymbols>
- <DebugType>full</DebugType>
- <Optimize>false</Optimize>
- <OutputPath>..\bin\</OutputPath>
- <DefineConstants>DEBUG;TRACE</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- <RegisterForComInterop>false</RegisterForComInterop>
- <DocumentationFile>..\bin\HidSharp.XML</DocumentationFile>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
- <DebugType>pdbonly</DebugType>
- <Optimize>true</Optimize>
- <OutputPath>..\bin\</OutputPath>
- <DefineConstants>TRACE</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- <RegisterForComInterop>true</RegisterForComInterop>
- <DocumentationFile>..\bin\HidSharp.XML</DocumentationFile>
- </PropertyGroup>
- <ItemGroup>
- <Reference Include="System" />
- </ItemGroup>
- <ItemGroup>
- <Compile Include="AsyncResult.cs" />
- <Compile Include="Throw.cs" />
- <Compile Include="HidDevice.cs" />
- <Compile Include="HidDeviceLoader.cs" />
- <Compile Include="HidStream.cs" />
- <Compile Include="Platform\HidSelector.cs" />
- <Compile Include="Platform\HidManager.cs" />
- <Compile Include="Platform\Utf8Marshaler.cs" />
- <Compile Include="Platform\Windows\NativeMethods.cs" />
- <Compile Include="Platform\Windows\WinHidDevice.cs" />
- <Compile Include="Platform\Windows\WinHidManager.cs" />
- <Compile Include="Platform\Windows\WinHidStream.cs" />
- <Compile Include="Platform\Linux\NativeMethods.cs" />
- <Compile Include="Platform\Linux\LinuxHidDevice.cs" />
- <Compile Include="Platform\Linux\LinuxHidManager.cs" />
- <Compile Include="Platform\Linux\LinuxHidStream.cs" />
- <Compile Include="Platform\MacOS\NativeMethods.cs" />
- <Compile Include="Platform\MacOS\MacHidDevice.cs" />
- <Compile Include="Platform\MacOS\MacHidManager.cs" />
- <Compile Include="Platform\MacOS\MacHidStream.cs" />
- <Compile Include="Platform\Libusb\NativeMethods.cs" />
- <Compile Include="Platform\Libusb\LibusbHidManager.cs" />
- <Compile Include="Platform\Unsupported\UnsupportedHidManager.cs" />
- <Compile Include="Properties\AssemblyInfo.cs" />
- <Compile Include="ReportDescriptors\CollectionType.cs" />
- <Compile Include="ReportDescriptors\DataMainItemFlags.cs" />
- <Compile Include="ReportDescriptors\GlobalItemTag.cs" />
- <Compile Include="ReportDescriptors\Parser\LocalIndexes.cs" />
- <Compile Include="ReportDescriptors\LocalItemTag.cs" />
- <Compile Include="ReportDescriptors\EncodedItem.cs" />
- <Compile Include="ReportDescriptors\MainItemTag.cs" />
- <Compile Include="ReportDescriptors\ItemType.cs" />
- <Compile Include="ReportDescriptors\Parser\IndexBase.cs" />
- <Compile Include="ReportDescriptors\Parser\IndexList.cs" />
- <Compile Include="ReportDescriptors\Parser\IndexRange.cs" />
- <Compile Include="ReportDescriptors\Parser\Report.cs" />
- <Compile Include="ReportDescriptors\Parser\ReportCollection.cs" />
- <Compile Include="ReportDescriptors\Parser\ReportDescriptorParser.cs" />
- <Compile Include="ReportDescriptors\Parser\ReportMainItem.cs" />
- <Compile Include="ReportDescriptors\Parser\ReportSegment.cs" />
- <Compile Include="ReportDescriptors\Parser\ReportType.cs" />
- <Compile Include="ReportDescriptors\Units\CurrentUnit.cs" />
- <Compile Include="ReportDescriptors\Units\LengthUnit.cs" />
- <Compile Include="ReportDescriptors\Units\LuminousIntensityUnit.cs" />
- <Compile Include="ReportDescriptors\Units\MassUnit.cs" />
- <Compile Include="ReportDescriptors\Units\TemperatureUnit.cs" />
- <Compile Include="ReportDescriptors\Units\TimeUnit.cs" />
- <Compile Include="ReportDescriptors\Units\Unit.cs" />
- <Compile Include="ReportDescriptors\Units\UnitSystem.cs" />
- </ItemGroup>
- <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
- <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
- Other similar extension points exist, see Microsoft.Common.targets.
- <Target Name="BeforeBuild">
- </Target>
- <Target Name="AfterBuild">
- </Target>
- -->
- <ItemGroup />
- </Project>
|