LoginSignup
0
0

More than 5 years have passed since last update.

UniversalApplicationで空のプロジェクトを作成するとエラーが出る

Posted at

UWPの開発をしようとしたら、
「vstemplateファイルで参照されているウィーザードクラス'Microsoft,VisualStudio,WinRT,TemplateWizards...(省略)'
はアセンブリ'Microsoft,VisualStudio,WinRT,TemplateWizards,Version=14.0.0.0, Culture=...(省略)'に存在しません」
と表示されてプロジェクト作成が出来なかったのでその解決法。

C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\ProjectTemplates\CSharp\Windows Root\Windows UAP\1041\BlankApplication
の中の.vstemplateファイルを管理者権限で開いて下記の部分を消すと上手くいきました。

<WizardExtension>
    <Assembly>Microsoft.VisualStudio.WinRT.TemplateWizards, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</Assembly>
    <FullClassName>Microsoft.VisualStudio.WinRT.TemplateWizards.ApplicationInsights.Wizard</FullClassName>
</WizardExtension>

参考:
眠るシーラカンスと水底のプログラマー
http://coelacanth.jp.net/uwp_applicationinsights_error/

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0