2012-10-24 59 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工作正常。

相關問題