Are there any plans for publishing the RhinoCommon Nuget with a net7.0 target ?
I know there are workarounds like <NoWarn>NU1701</NoWarn> but still other problems like A reference to the type 'System.Drawing.Bitmap' in assembly 'System.Drawing' was found, but the type could not be found in that assembly
pop up and make building for net7.0 hard and frustrating. I have not been able to solve this one with a System.Drawing.Common reference.
I maintain a plugin that loads other RhinoCommon libraries from Nuget dynamical and does its own dependency resolution. (via dotnet restore) It would be great if I could publish those RhinoCommon libraries correctlly multitargeting net48 and net7.0 on Nuget.
C# allows a project with RhinoCommon to compile targeting net7, but arguably it shouldn’t.
F# is stricter and does not allow this. See dotnet/fsharp#17295 (comment)