OpenTK warnings

My C# Winforms application target .Net 8 and uses the latest GoDiagram.

Currently everything seems to work fine.

However, when I build it I get these warnings:
warning NU1701: Package ‘OpenTK 3.1.0’ was restored using ‘.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8, .NETFramework,Version=v4.8.1’ instead of the project target framework ‘net8.0-windows10.0.20348’. This package may not be fully compatible with your project.

and

warning NU1701: Package ‘OpenTK.GLControl 3.1.0’ was restored using ‘.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8, .NETFramework,Version=v4.8.1’ instead of the project target framework ‘net8.0-windows10.0.20348’. This package may not be fully compatible with your project.

I just wondered whether this is anything to worry about, and whether a future release of GoDiagram might use a later version of OpenTK, OpenTK.GLControl which might get rid of those warnings?

These warnings come from SkiaSharp, which is used to allow for faster rendering, particularly on newer high density displays. They don’t impact functionality or cause any issues, so for our projects we’ve added <NoWarn>NU1701</NoWarn>.

It does look like this may have been resolved recently, so we’ll take a look at the updated packages.