I have a C# project that needs to disable DPI awareness, and does so in the AssemblyInfo.cs using the following code:
[assembly: System.Windows.Media.DisableDpiAwareness]
It works perfectly (I can confirm it has fixed previous DPI resizes) up until it loads the OpenTK dll used for 3D rendering (https://gfycat.com/FamousFantasticCommongonolek). Is there any way (other than rebuilding OpenTK from source myself) that I can properly disable DPI awareness with the DLL?