C# 尝试在windows应用商店应用程序c中查看设计器时出错#

C# 尝试在windows应用商店应用程序c中查看设计器时出错#,c#,xaml,windows-store-apps,windows-store,C#,Xaml,Windows Store Apps,Windows Store,当我尝试查看项目中的任何xaml设计页面时,会收到以下错误消息,有人能告诉我这是什么意思吗 System.Exception Package failed updates, dependency or conflict validation. Windows cannot install package App.a9a122e61.a5503.a4c46.a9cbd.ad0f269743658 because this package depends on another package th

当我尝试查看项目中的任何xaml设计页面时,会收到以下错误消息,有人能告诉我这是什么意思吗

System.Exception
Package failed updates, dependency or conflict validation.

Windows cannot install package App.a9a122e61.a5503.a4c46.a9cbd.ad0f269743658 because this package depends on another package that could not be found. This package requires minimum version 0.0.0.0 of framework Microsoft.VCLibs.110.00.Debug published by any publisher to install. Provide the framework along with this package.
   at Microsoft.Expression.HostUtility.Platform.AppContainerProcessDomainFactory.CreateDesignerProcess(String applicationPath, String clientPort, Uri hostUri, IDictionary environmentVariables, Int32& processId, Object& processData)
   at Microsoft.Expression.DesignHost.Isolation.Primitives.ProcessDomainFactory.ProcessIsolationDomain..ctor(ProcessDomainFactory factory, IIsolationBoundary boundary, AppDomainSetup appDomainInfo, FrameworkName targetFramework, String identifier, String baseDirectory)
   at Microsoft.Expression.DesignHost.Isolation.Primitives.ProcessDomainFactory.CreateIsolationDomain(IIsolationBoundary boundary)
   at Microsoft.Expression.HostUtility.Platform.AppContainerProcessDomainFactory.CreateIsolationDomain(IIsolationBoundary boundary)
   at Microsoft.Expression.DesignHost.Isolation.Primitives.IsolationBoundary.Initialize()
   at Microsoft.Expression.DesignHost.Isolation.Primitives.IsolationBoundary.CreateInstance[T](Type type)
   at Microsoft.Expression.DesignHost.Isolation.IsolatedExportProvider.Initialize()
   at Microsoft.VisualStudio.ExpressionHost.Services.VSIsolationService.CreateExportProvider(IIsolationTarget isolationTarget, ICatalogFactory catalogFactory, IExportFilter filter)
   at Microsoft.Expression.DesignHost.Isolation.IsolationService.CreateLease(IIsolationTarget isolationTarget)
   at Microsoft.Expression.DesignHost.IsolatedDesignerService.CreateLease(IIsolationTarget isolationTarget, CancellationToken cancelToken, DesignerServiceEntry& entry)
   at Microsoft.Expression.DesignHost.IsolatedDesignerService.IsolatedDesignerView.CreateDesignerViewInfo(CancellationToken cancelToken)
   at Microsoft.Expression.DesignHost.Isolation.IsolatedTaskScheduler.InvokeWithCulture[T](CultureInfo culture, Func`2 func, CancellationToken cancelToken)
   at Microsoft.Expression.DesignHost.Isolation.IsolatedTaskScheduler.<>c__DisplayClassa`1.<StartTask>b__6()
   at System.Threading.Tasks.Task`1.InnerInvoke()
   at System.Threading.Tasks.Task.Execute()
System.Exception
包更新、依赖项或冲突验证失败。
Windows无法安装程序包App.a9a122e61.a5503.a4c46.a9cbd.ad0f269743658,因为此程序包依赖于另一个找不到的程序包。此软件包需要由任何发布者发布的框架Microsoft.VCLibs.110.00.Debug的最低版本0.0.0.0才能安装。随此包提供框架。
位于Microsoft.Expression.HostUtility.Platform.AppContainerProcessDomainFactory.CreateDesignerProcess(字符串applicationPath、字符串clientPort、Uri hostUri、IDictionary environmentVariables、Int32&processId、Object&processData)
位于Microsoft.Expression.DesignHost.Isolation.Primitives.ProcessDomainFactory.ProcessIsolationDomain..ctor(ProcessDomainFactory、IIsolationBoundary、AppDomainSetup appDomainInfo、FrameworkName targetFramework、字符串标识符、字符串baseDirectory)
位于Microsoft.Expression.DesignHost.Isolation.Primitives.ProcessDomainFactory.CreateIsolationDomain(IIsolationBoundary)
位于Microsoft.Expression.HostUtility.Platform.AppContainerProcessDomainFactory.CreateIsolationDomain(IIsolationBoundary边界)
在Microsoft.Expression.DesignHost.Isolation.Primitives.IsolationBoundary.Initialize()中
位于Microsoft.Expression.DesignHost.Isolation.Primitives.IsolationBoundary.CreateInstance[T](类型)
在Microsoft.Expression.DesignHost.IsolatedExportProvider.Initialize()中
在Microsoft.VisualStudio.ExpressionHost.Services.VSIsolationService.CreateExportProvider(IIsolationTarget isolationTarget、iCalogFactory catalogFactory、IExportFilter筛选器)上
在Microsoft.Expression.DesignHost.Isolation.IsolationService.CreateLease(IIsolationTarget isolationTarget)中
在Microsoft.Expression.DesignHost.IsolatedDesignerService.CreateLease(IIsolationTarget isolationTarget、CancellationToken cancelToken、DesignerServiceEntry&entry)中
位于Microsoft.Expression.DesignHost.IsolatedDesignerService.IsolatedDesignerView.CreateDesignerInfo(CancellationToken cancelToken)
在Microsoft.Expression.DesignHost.Isolation.IsolatedTaskScheduler.InvokeWithCulture[T](CultureInfo区域性,Func`2 Func,CancellationToken cancelToken)
在Microsoft.Expression.DesignHost.IsolatedTaskScheduler.c_uuDisplayClassA`1.b_uu6()中
在System.Threading.Tasks.Task`1.InnerInvoke()中
在System.Threading.Tasks.Task.Execute()中
谢谢

老茧

更新

经过大约一个小时的搜索;我已经求助于使用搅拌机,因为它在那里工作得很好

对于不知道如何做到这一点的人:


打开aspx页面->查看->用Blend打开…

我知道这是一个老问题,但由于没有答案,这可能会对某人有所帮助。 我在这里回答了同样的问题:

您的问题表明您缺少此软件包: “Microsoft.VCLibs.120.00.Debug”(在您的示例中是VCLibs.110)您可以通过添加visual studio安装程序来解决此问题。“Visual C++移动开发核心工具”,其分支是“Visual C++跨平台移动开发”。

我会尝试在visual studio上进行修复,以修复可能出现的问题