TypeLoadException Windows.Graphics.Display.DisplayInformation on Win7; no error on Win10

I’ve got a project working under Windows 10, using MonoGame 3.7.0.994 from developer branch.
(After deleting MonoGame 3.6.x.x in "C:\Program Files (x86)\MonoGame\v3.0\Assemblies\ WIndows8; otherwise it tried to use that one, but I need 3.7.0.994, which is in “…\Assemblies\ Windows”).

On a Windows 7 64-bit pc, trying to build and run same project source. When run get:

System.TypeLoadException was unhandled by user code
  HResult=-2146233054
  Message=Could not find Windows Runtime type 'Windows.Graphics.Display.DisplayInformation'.
  Source=MonoGame.Framework
  TypeName=Windows.Graphics.Display.DisplayInformation
  StackTrace:
	   at Microsoft.Xna.Framework.Graphics.GraphicsDevice.PlatformSetup()
	   at Microsoft.Xna.Framework.Graphics.GraphicsDevice.Setup()
	   at Microsoft.Xna.Framework.Graphics.GraphicsDevice..ctor(GraphicsAdapter adapter, GraphicsProfile graphicsProfile, PresentationParameters presentationParameters)
	   at ..MyLibrary.MyVBModule.CreateGraphicsDevice(GraphicsAdapter adapter, IntPtr windowHandle, PresentationParameters pp, GraphicsProfile profile) in ..my file path..
              ...
  InnerException: 
	   HResult=-2146233031
	   Message=Operation is not supported on this platform.

Key points:

  • Could not find Windows Runtime type ‘Windows.Graphics.Display.DisplayInformation’.
  • at Microsoft.Xna.Framework.Graphics.GraphicsDevice.PlatformSetup()
  • Operation is not supported on this platform.

WHERE IT HAPPENS: When the error occurs, a Windows Form window is open, and user has clicked a control to go to the (newer) 3D portion of the app. A graphics adapter has been successfully retrieved from GraphicsAdapter.Adapters; now doing New GraphicsDevice(adapter, profile, pp) from VB code.
NOT running MonoGame Game class; I have a custom game loop - that loop has not yet started running.

Questions:

  • Should MonoGame 3.7 run on Windows 7 (64-bit)?
  • Does this error indicate I am still running MonoGame from Windows8 or similar branch, that would have that method?