<PackageReference Include="System.Drawing.Common" Version="10.0.0-preview.1.25080.3" />

ObsoletedOSPlatformAttribute

using System.Runtime.CompilerServices; namespace System.Runtime.Versioning { [System.Runtime.CompilerServices.NullableContext(2)] [System.Runtime.CompilerServices.Nullable(0)] [AttributeUsage(AttributeTargets.Assembly | AttributeTargets.Module | AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Enum | AttributeTargets.Constructor | AttributeTargets.Method | AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Event | AttributeTargets.Interface, AllowMultiple = true, Inherited = false)] internal sealed class ObsoletedOSPlatformAttribute : System.Runtime.Versioning.OSPlatformAttribute { public string Message { get; } public string Url { get; set; } [System.Runtime.CompilerServices.NullableContext(1)] public ObsoletedOSPlatformAttribute(string platformName) : base(platformName) { } [System.Runtime.CompilerServices.NullableContext(1)] public ObsoletedOSPlatformAttribute(string platformName, [System.Runtime.CompilerServices.Nullable(2)] string message) : base(platformName) { Message = message; } } }