在Windows 7上打开由 Microsoft Visual Studio 2019社区新创建的Package.appxmanifest
(对于Windows 10具有新项目Windows Application Packaging Project
)时,我遇到了问题。
我在弹出窗口中显示一条错误消息:Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information.
。
左下角有一条消息:This item does not support previewing
我阅读了很多已经回答的问题,但都没有成功,例如:
然后我尝试:
devenv /updateconfiguration
和devenv /clearcache
Package.appxmanifest
或View Code (F7)
打开View Designer (Shift+F7)
。什么都没发生。Edit your package in a designer
。长时间加载后,什么都没有发生。..也没有成功...
激活日志(devenv /Log mylog
)后,我发现了以下错误:
<entry>
<record>380</record>
<time>2019/06/19 08:40:03.958</time>
<type>Error</type>
<source>Extension Manager</source>
<description>Extension will not be loaded because an extension with the same ID 'Microsoft.Windows.DevelopmentKit.Desktop' is already loaded at C:\PROGRAM FILES (X86)\COMMON FILES\MICROSOFT\EXTENSIONMANAGER\EXTENSIONS\MICROSOFT\WINDOWS KITS\10\DESKTOP SDK\...</description>
<path>C:\PROGRAM FILES (X86)\COMMON FILES\MICROSOFT\EXTENSIONMANAGER\EXTENSIONS\MICROSOFT\WINDOWS KITS\8.0\DESKTOP SDK\</path>
</entry>
<entry>
<record>392</record>
<time>2019/06/19 08:40:04.308</time>
<type>Error</type>
<source>Microsoft.VisualStudio.ComponentModelHost.VsShellComponentModelHost</source>
<description>Still unable to load MEF component DLL: Impossible de charger le fichier ou l'assembly 'Microsoft.Lync.Model, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c' ou une de ses dépendances. Le fichier spécifié est introuvable.</description>
<path>c:\program files (x86)\microsoft visual studio\2019\community\common7\ide\extensions\microsoft\codesense\framework\Microsoft.VisualStudio.CodeSense.Client.Common.dll</path>
</entry>
<entry>
<record>393</record>
<time>2019/06/19 08:40:04.314</time>
<type>Error</type>
<source>Microsoft.VisualStudio.ComponentModelHost.VsShellComponentModelHost</source>
<description>Still unable to load MEF component DLL: Impossible de charger le fichier ou l'assembly 'Microsoft.WebTools.Languages.Json, Version=16.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' ou une de ses dépendances. Le fichier spécifié est introuvable.</description>
<path>C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\common7\ide\Microsoft.VisualStudio.VC.dll</path>
</entry>
<entry>
<record>394</record>
<time>2019/06/19 08:40:04.314</time>
<type>Error</type>
<source>Microsoft.VisualStudio.ComponentModelHost.VsShellComponentModelHost</source>
<description>Still unable to load MEF component DLL: Impossible de charger le fichier ou l'assembly 'Microsoft.WebTools.Languages.Json, Version=16.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' ou une de ses dépendances. Le fichier spécifié est introuvable.</description>
<path>C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\OPENFOLDER\Microsoft.VisualStudio.Workspace.VSIntegration.dll</path>
</entry>
<entry>
<record>395</record>
<time>2019/06/19 08:40:04.319</time>
<type>Error</type>
<source>Microsoft.VisualStudio.ComponentModelHost.VsShellComponentModelHost</source>
<description>Still unable to load MEF component DLL: Impossible de charger le fichier ou l'assembly 'Microsoft.CodeAnalysis.TypeScript.EditorFeatures, Version=16.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' ou une de ses dépendances. Le fichier spécifié est introuvable.</description>
<path>C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\INTELLICODE\Microsoft.VisualStudio.IntelliCode.TypeScript.dll</path>
</entry>
<entry>
<record>396</record>
<time>2019/06/19 08:40:04.324</time>
<type>Error</type>
<source>Microsoft.VisualStudio.ComponentModelHost.VsShellComponentModelHost</source>
<description>Still unable to load MEF component DLL: Impossible de charger le fichier ou l'assembly 'Microsoft.VisualStudio.LiveShare, Version=1.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' ou une de ses dépendances. Le fichier spécifié est introuvable.</description>
<path>c:\program files (x86)\microsoft visual studio\2019\community\common7\ide\commonextensions\microsoft\vc\languageserver\Microsoft.VisualStudio.VC.LanguageServer.dll</path>
</entry>
有什么想法吗?