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

PrinterResolution

public class PrinterResolution
namespace System.Drawing.Printing { public class PrinterResolution { public PrinterResolutionKind Kind { get { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing); } set { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing); } } public int X { get { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing); } set { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing); } } public int Y { get { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing); } set { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing); } } public PrinterResolution() { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing); } public override string ToString() { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing); } } }