ViewCapture.CaptureToBitmap not working on Mac

This method isn’t working on macOS because it requires a Windows-only library. Is there any workaround available?

The type ‘Bitmap’ is defined in an assembly that is not referenced. You must add a reference to assembly ‘System.Drawing.Common, Version=0.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51’.

I think ETO has a matching library, have you tried reviewing this:

Yeah, i tried that, but the RhinoCommon library itself is referencing system.drawing, requiring me to reference it as well.

I did solve the problem by adding:
<PackageReference Include=“System.Drawing.Common” Version=“8.0.0” />

To the .csproj
I suspect Rhino has its own copy of the library it uses, in which case, maybe a reference should be added to the template?