How to set OpenGl version in OpenTk 4.6.4 using .NET Core 5.0 using NativeWindowSettings class? and how to implement it correctly in this code
var nativeWindowSettings = new NativeWindowSettings
{
Size = new Vector2i(width, height),
Title = title,
API = ContextAPI.OpenGL,
Profile = ContextProfile.Core,
// APIVersion = ??
};