-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathScanCodes.csproj
More file actions
20 lines (18 loc) · 929 Bytes
/
ScanCodes.csproj
File metadata and controls
20 lines (18 loc) · 929 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<Authors>Omer Hijazi</Authors>
<Company />
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Description>An enum containing scan codes for Windows and Linux.
It can be used for things like simulating or detecting user input e.g. SendInput() in WinAPI.</Description>
<Copyright>Copyright (c) 2021 Omer Hijazi</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://omerhijazi404.github.io</PackageProjectUrl>
<RepositoryUrl>https://www.github.com/omerhijazi404/ScanCodes</RepositoryUrl>
<RepositoryType>GitHub</RepositoryType>
<PackageTags>Keyboard, Linux, Windows, WinAPI</PackageTags>
<NeutralLanguage>en-US</NeutralLanguage>
</PropertyGroup>
</Project>