Error loading Windows Universal App template

it's pretty annoying, now just finished with the setup and trying to create a Hello World application with Visual Studio 2015 Enterprise

--------------------------- Microsoft Visual Studio --------------------------- Error: this template attempted to load component assembly 'Microsoft.VisualStudio.Universal.TemplateWizards, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. For more information on this problem and how to enable this template, please see documentation on Customizing Project Templates. --------------------------- OK --------------------------- 

Now I do not understand what is wrong with him. I tried Comunity Edition for Windows 8.1 and was able to build applications. but trying to use Enterprise Edition on Windows 10 doesn’t rule out an error.

There is not a single development tool on the information page.

 Microsoft Visual Studio Enterprise 2015 Version 14.0.23107.0 D14REL Microsoft .NET Framework Version 4.6.00079 Installed Version: Enterprise Architecture and Modeling Tools 00322-80000-00000-AA627 Microsoft Architecture and Modeling Tools UML® and Unified Modeling Language™ are trademarks or registered trademarks of the Object Management Group, Inc. in the United States and other countries. Visual Basic 2015 00322-80000-00000-AA627 Microsoft Visual Basic 2015 Visual C# 2015 00322-80000-00000-AA627 Microsoft Visual C# 2015 Visual C++ 2015 00322-80000-00000-AA627 Microsoft Visual C++ 2015 Application Insights Tools for Visual Studio Package 1.0 Application Insights Tools for Visual Studio ASP.NET and Web Tools 14.0.20711.0 ASP.NET and Web Tools ASP.NET Web Frameworks and Tools 2013 5.2.30624.0 For additional information, visit http://www.asp.net/ Common Azure Tools 1.5 Provides common services for use by Azure Mobile Services and Microsoft Azure Tools. GenerateUnitTest 1.0 Generates unit test code for methods in classes under test. GitHub.VisualStudio 1.0 A Visual Studio Extension that brings the GitHub Flow into Visual Studio. Indent Guides 14 Indent Guides Adds visual guides at each indentation level. Microsoft Azure HDInsight HQL Service 2.0.2200.0 Language service for Hive query Microsoft Azure HDInsight Tools for Visual Studio 2.0.2200.0 An integrated development environment for HDInsight application development. Microsoft Azure Mobile Services Tools 1.4 Microsoft Azure Mobile Services Tools Microsoft Code Digger 0.9 Microsoft Code Digger Microsoft.Pex.VisualStudio 1.0 Pex NuGet Package Manager 3.0.0 NuGet Package Manager in Visual Studio. For more information about NuGet, visit http://docs.nuget.org/. PreEmptive Analytics Visualizer 1.2 Microsoft Visual Studio extension to visualize aggregated summaries from the PreEmptive Analytics product. SQL Server Data Tools 14.0.50616.0 Microsoft SQL Server Data Tools Web Essentials 2015 0.5.144 Adds many useful features to Visual Studio for web developers. 
+9
windows-10 win-universal-app windows-10-iot-core
source share
4 answers

I had the same issue on Windows 10 in VirtualBox.

You must run the visual studio installer again. Select "Edit" in the installer. Select Options> Windows and Web Development> Universal Application Development Tools for Windows> Click Update / Install.

Now you can use the project template vs Core IoT Core.

+21
source share

Perhaps you have xamarin for visual studio disabled. Choose Tools> En Updates Extensions> Xamarin For visual studio> Click On.

+1
source share

If such an error occurred in the project from the DirectX project template, make sure that you have the UWP workload installed (from the Visual Studio installer).

0
source share

here you can find a solution.

https://github.com/walbourn/directx-vs-templates/issues/7

above the specified site,

The workaround for this is to edit C: \ Program Files (x86) \ Microsoft Visual Studio \ 2017 \ Enterprise \ Common7 \ IDE \ devenv.exe.config and add to the section:

 <dependentAssembly> <assemblyIdentity name="Microsoft.VisualStudio.Universal.TemplateWizards" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/> <bindingRedirect oldVersion="14.0.0.0" newVersion="15.0.0.0"/> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="Microsoft.VisualStudio.WinRT.TemplateWizards" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/> <bindingRedirect oldVersion="14.0.0.0" newVersion="15.0.0.0"/> </dependentAssembly> 
-one
source share

All Articles