This is the minimum amount of code for a Monogame window in .NET 6.0. It is just a black window.
Nugets are the blessing of C# as it makes it so easy to add other people's code to your project!
This project makes use of two nugets:
The code reside in two files, and here they are:
Class Program is the starting point for the windows application. The constructor creates an instance of the ShootThemAllGame class and calls Run().
Class ShootThemAllGame derive from the monogame Game-class. In the constructor, we create a GraphicsDeviceManager connecting to 'this' game-object. (It's a window).
Running the example opens a black monogame window.
Please note that the graphics-object is never used, my mistake! You can remove everything related with this, it is not used in this simple example.
graphics = new GraphicsDeviceManager(this) …