2012-10-24 57 views
4

我们在Windows刚刚提交的应用程序8店(Metro风格应用),并得到了错误:的Windows 8商店应用 - 依赖问题 - 认证失败

XXX takes a dependency on Microsoft Visual C++ Runtime Package framework but is missing the framework dependency declaration in the manifest.

我们有我们的应用程序在发布版本工作正常,但它没有被接受为包,所以我们需要将我们的应用程序迁移为Windows RTM。在此期间,我们已经在清单以下条目 :

<Dependencies> 
     <PackageDependency Name="Microsoft.VCLibs.110"  MinVersion="11.0.0.0" /> 
    </Dependencies> 

如果我们继续这样,我们得到以下错误而构建应用程序。

Error : DEP0700 : Registration of the app failed. Windows cannot install package 5d6f272d-c915-4de1-a9d6-c0c08d63ab94 because 
this package depends on another package that could not be found. This package requires minimum version 11.0.50727.1 of framework Microsoft.VCLibs.110 
published by any publisher to install. Provide the framework along with this package. (0x80073cf3) Test_App1 

因此,我们删除它并提交应用程序,它只是失败,并给了以下错误。

XXXX takes a dependency on Microsoft Visual C++ Runtime Package framework but is missing the framework dependency declaration in the manifest. 

我们需要将这个包本身保存在清单中,但没有完成。

+0

问题得到了通过更新解决<相关性> 到 <相关性>

回答

1

问题得到了通过更新

“Microsoft.VCLibs.110”到NAME =“Microsoft.VCLibs.110.00”

+0

本文解释了Microsoft.VCLibs对于Windows应用商店应用的含义:http://blogs.msdn.com/b/vcblog/archive/ 2012/09/28/10354327.aspx –

4

我有类似的问题。 在您的项目中添加参考到Microsoft Visual C++ Runtime Package

只需点击项目我选择添加参考并找到此包。添加这应该解决您的问题

0

只是我已经修好了VS 2012的解决从控制面板>程序和设计器的Windows 8工作正常。

相关问题