-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added SupportedOSPlatform attribute to assembly for .NET 5 and newer
- Loading branch information
1 parent
ca846a1
commit 6cc22c6
Showing
1 changed file
with
10 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,17 @@ | ||
Imports System.Reflection | ||
Imports System.Reflection | ||
Imports System.Resources | ||
|
||
#If NET5_0_OR_GREATER Then | ||
Imports System.Runtime.Versioning | ||
#End If | ||
|
||
<Assembly: AssemblyTitle("InputHelper")> | ||
<Assembly: AssemblyDescription("A .NET friendly library for simulating mouse and keyboard input.")> | ||
<Assembly: AssemblyProduct("InputHelper")> | ||
<Assembly: AssemblyCopyright("Copyright © Vincent Bengtsson 2016-2023")> | ||
<Assembly: AssemblyVersion("2.1.0.1")> | ||
<Assembly: NeutralResourcesLanguage("en")> | ||
<Assembly: NeutralResourcesLanguage("en")> | ||
|
||
#If NET5_0_OR_GREATER Then | ||
<Assembly: SupportedOSPlatform("windows")> | ||
#End If |