Generic application template missing from Visual Studio 2015 community

I still cannot create a new universal application in the Visual Studio 2015 community that I installed.

I thought the reason was because I was running Windows 8.1. Today I upgraded to Windows 10, but there are no Universal Application templates available.

I installed the Windows 10 SDK but nothing has changed.

How can i fix this?

Thanks.

+5
source share
3 answers

You need to install development tools for Windows 10 (select, if you want, select and select the Win10 + emulator tool). After that, you will see the template in the new project.

+12
source

As of March 2016, VS development tools, including for cross-platform development with Xamarin , tools are built into Visual studio 2015 update 2 , both for communities and for corporate versions.

All you have to do is go to the ISO file and try reinstalling it from the ISO file, and then choose the option from the options, and then choose the universal tools for developing windows. See screenshots for a better understanding.

select modify and choose UWP Dev toolsfor cross platform dev tools with xamarin, android emulator too, etc

+2
source

As stated in @ magicandre1981, the Universal App template appears only if you select the Windows 10 developer tools when you start the installer and select the user preferences. In addition, there is no such thing as a separate template for a mobile or desktop, as this is which is the true meaning of the universal.
You can simply select the universal application template and write code intended for all / all device families , as described in the Universal Windows Platform Guide .
Also, add a link to the SDK extension related to the device family (Windows Mobile Extensions for mobile api).

To use a device-specific api, you must first check its availability.

  Windows.Foundation.Metadata.ApiInformation.IsTypePresent("Windows.Phone.UI.Input.HardwareButtons"); 
+1
source

All Articles