Skip to content

Commit

Permalink
Added SupportedOSPlatform attribute to assembly for .NET 5 and newer
Browse files Browse the repository at this point in the history
  • Loading branch information
Visual-Vincent committed Dec 7, 2023
1 parent ca846a1 commit 6cc22c6
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions InputHelper/AssemblyInfo.vb
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

0 comments on commit 6cc22c6

Please sign in to comment.