From 6cc22c6ac019d3d9b980c27983e07c7535f0244e Mon Sep 17 00:00:00 2001 From: Visual-Vincent Date: Thu, 7 Dec 2023 14:08:52 +0100 Subject: [PATCH] Added SupportedOSPlatform attribute to assembly for .NET 5 and newer --- InputHelper/AssemblyInfo.vb | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/InputHelper/AssemblyInfo.vb b/InputHelper/AssemblyInfo.vb index d095c5f..d6d2cb0 100644 --- a/InputHelper/AssemblyInfo.vb +++ b/InputHelper/AssemblyInfo.vb @@ -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 + - \ No newline at end of file + + +#If NET5_0_OR_GREATER Then + +#End If