C# 调试windows 10通用应用程序时出错

C# 调试windows 10通用应用程序时出错,c#,visual-studio-2015,windows-10,win-universal-app,C#,Visual Studio 2015,Windows 10,Win Universal App,我正在开发一个Windows10通用应用程序。应用程序中没有生成错误。当我尝试调试时,发生了以下错误 Severity Code Description Project File Line Error Error : DEP0800 : The required framework "C:\Program Files (x86)\Microsoft SDKs\Windows Kits\10\ExtensionSDKs\Microsoft.Midi.GmDls\10.

我正在开发一个Windows10通用应用程序。应用程序中没有生成错误。当我尝试调试时,发生了以下错误

Severity    Code    Description Project File    Line
Error       Error : DEP0800 : The required framework "C:\Program Files (x86)\Microsoft SDKs\Windows Kits\10\ExtensionSDKs\Microsoft.Midi.GmDls\10.0.10240.0\.\Appx\Neutral\MidiVoices.appx" failed to install. 
error 0x800B010A: The root certificate and all intermediate certificates of the signature in the app package or bundle must be trusted. 

发生此错误的原因以及如何解决此问题?

正如@Hans Passant提到的,这是一个已知的问题

这是因为MidiVoice.appx在当前版本的SDK中没有正确签名。此问题已在TH2 SDK中修复。因此,当TH2 SDK更新对您可用时,您将能够使其工作

[更新]

包括TH2SDK更新。问题已解决。

轻微更正--更新1似乎没有正确的版本。您需要的是“10586”SDK,而不是“10240”版本。我下载并手动选择了最新的SDK


之后,该项目必须手动编辑以升级min版本(安装586 SDK将取消安装10240 SDK)并重新加载。有一个可怕的“重新安装缺少的功能”,实际上似乎没有任何作用,需要删除并重新添加DLS参考。

已知问题部分:问题已解决。请检查我的答案更新。