Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can Microsoft XNA run on Windows 10?

Tags:

c#

windows-10

xna

I have created a game using C# and Microsoft XNA 4.0. It works on fine on Windows 8 and 8.1, but my friend tried downloading it for a computer running Windows 10 and found that it wouldn't open. It wouldn't even appear in Task Manager when opening it was attempted. The computer in question has the Microsoft XNA Framework Redistributable 4.0 installed on it, so it should be working. Is Windows 10 simply not compatible with XNA?

like image 637
Ben Avatar asked Dec 25 '22 08:12

Ben


2 Answers

XNA is no longer supported on newer versions of windows, it was discontinued and isn't supported on platforms newer than Windows 7. Luckily there is an open source implementation of XNA which is essentially the exact same thing and that is currently supported on all windows versions. It's called "MonoGame", here's the link to their website:

http://www.monogame.net/

like image 119
x2kpb Avatar answered Dec 30 '22 12:12

x2kpb


I know this is a older post but just for those looking for an option like I was today (this post is still a top hit in google) its a bit of work to get setup, but XNA will in fact run on windows 10 just fine, and there is a way to actually use Visual Studio 2017 with XNA just fine as well:

http://flatredball.com/visual-studio-2017-xna-setup/

so if you have code for XNA or like the XNA framework (Like I do, I prefer the pure c# way not c# to some other bloated bridge like Unity) for 2D games then this will be your savior.

Enjoy :)

like image 23
Jacqueline Loriault Avatar answered Dec 30 '22 12:12

Jacqueline Loriault