forked from gmamaladze/globalmousekeyhook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMouseKeyHook.Rx.csproj
57 lines (57 loc) · 2.85 KB
/
MouseKeyHook.Rx.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{9754749C-1EEA-4468-8C32-B5BAC3235F54}</ProjectGuid>
<OutputType>Library</OutputType>
<TargetFrameworks>netcoreapp3.1;net462;net472</TargetFrameworks>
<UseWindowsForms>true</UseWindowsForms>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>MouseKeyHook.Rx</RootNamespace>
<AssemblyName>MouseKeyHook.Rx</AssemblyName>
<AssemblyTitle>MouseKeyHook.Rx</AssemblyTitle>
<AssemblyVersion>5.6.0.0</AssemblyVersion>
<FileAlignment>512</FileAlignment>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>5.6.0-alpha</Version>
<Copyright>(c) George Mamaladze 2000-2020</Copyright>
<Description>This is an extension to the MouseKeyHook library which allows you to observe keyboard and mouse venets in reactive manner using Rx.Net (System.Reactive) extensions.</Description>
<Authors>George Mamaladze</Authors>
<PackageId>MouseKeyHook.Rx</PackageId>
<PackageIconUrl>https://raw.githubusercontent.com/gmamaladze/globalmousekeyhook/master/mouse-keyboard-hook-logo64x64.png</PackageIconUrl>
<PackageProjectUrl>https://github.com/gmamaladze/globalmousekeyhook</PackageProjectUrl>
<PackageTags>keyboard mouse hook reactive Rx event global spy</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/gmamaladze/globalmousekeyhook</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<DefineConstants>TRACE</DefineConstants>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\MouseKeyHook\MouseKeyHook.csproj">
<Project>{f52aa97e-180a-40ed-8f2b-09080171d6c7}</Project>
<Name>MouseKeyHook</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Include="MouseKeyHook.Rx.nuspec" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Reactive" Version="4.3.2" />
<PackageReference Include="System.Reactive.Core" Version="4.3.2" />
<PackageReference Include="System.Reactive.Interfaces" Version="4.3.2" />
<PackageReference Include="System.Reactive.Linq" Version="4.3.2" />
<PackageReference Include="System.Reactive.PlatformServices" Version="4.3.2" />
</ItemGroup>
</Project>