[Solved] Can't get Monogame.Extended to work on my project?

Could not install package ‘MonoGame.Extended 3.7.0’. You are trying to install this package into a project that targets ‘.NETFramework,Version=v4.5’, but the package does not contain any assembly references or content files that are compatible with that framework. For more information, contact the package author.

I’m not really sure what to do here, do I have to downgrade the NETFramework version of my project? I’m worried that would break it.

MonoGame.Extended is a .NET Standard 2.0 library.

So you need to target a higher .NET Framework version in your project.

You can use this table to figure out what target versions are compatible with .NET Standard 2.0.

Oh boy I’m dumb. Thank you so much.