<PackageReference Include="System.Drawing.Common" Version="9.0.2" />

OSPlatformAttribute

abstract class OSPlatformAttribute : Attribute
using System.Runtime.CompilerServices; namespace System.Runtime.Versioning { [System.Runtime.CompilerServices.NullableContext(1)] [System.Runtime.CompilerServices.Nullable(0)] internal abstract class OSPlatformAttribute : Attribute { public string PlatformName { get; } private protected OSPlatformAttribute(string platformName) { PlatformName = platformName; } } }