MonoGame UAP app says I need an update?

Hi,

I’m just starting with MonoGame 3.4 and when I try to create a new Windows 10 UAP project, I get a notification that says:

“One or more projects require a platform SDK (UAP, Version 10.0.10069.0) that is either not installed or is included as part off a furture update to Visual Studio.”

I’m pretty sure I have all of the UAP SDK’s installed, and I even uninstalled and reinstalled them just to be sure. I cannot for the life of me figure this out. If anyone knows how to get past this I would greatly appreciate it!

Thanks

The same thing happened to me first time :slight_smile:
You need to update the TargetPlatform in your project file:

<TargetPlatformVersion>10.0.10069.0</TargetPlatformVersion>
<TargetPlatformMinVersion>10.0.10069.0</TargetPlatformMinVersion>

Change the value to 10.0.10240.0 and then reload the project.

That let’s me open the files in VS, but I can’t compile anything. There are countless errors that make me think there’s got to be another way to fix it :confused:

Try with the 3.5 release. I made a default project from the template, built it and ran it on a Raspberry Pi 3 with no changes. Default VS 2015 Community installation.

Yup still getting the same issue even with 3.5. Instead of “UAP, Version 10.0.10069.0” though I now need “UAP, Version 10.0.10586.15”, which I definitely have installed. I might just uninstall/reinstall VS at this point to see if it fixes it :frowning: I’ll also try installing it on a different machine tomorrow to see if it’s just something with my laptop that’s having issues.