Search code examples
xnamonogamerequirements

What are the requirements to run a MonoGame game in Windows?


If I developed a game in MonoGame, what are the requirements to run it on Windows?

Is the .NET Framework required? If so, what version should be installed?

Are there any other frameworks required?


Solution

  • The requirements for running a MonoGame 3.4 game in Windows:

    • .NET framework 4.X

    For MonoGame Windows OpenGL:

    • OpenGL 3.0 drivers
    • OpenAL 1.1

    For MonoGame Windows DirectX:

    • DirectX 11 runtime

    There's a post on the official forums which might help: MonoGame minimum requirements.