Microsoft Visual C++ Runtime Package framework is missing the framework dependency declaration in the manifest

扶醉桌前 提交于 2019-12-23 14:46:51

问题


I receive the following error on the Windows App Certification Kit for Windows 8.1.

The app manifest test detected the following errors:XXX takes a dependency on Microsoft Visual C++ Runtime Package (Microsoft.VCLibs.110.00) framework but is missing the framework dependency declaration in the manifest.

My solution builds with zero errors. However, I receive an error after I create an app package and run the Windows Application Certification Kit.

I have added and removed references to the C++ runtime extension. In addition, I do not see any fields in the app manifest editor to modify that would resolve this dependency error.


回答1:


It sounds like you are including a library that was built with Visual Studio 2012. You will need to rebuild that library in Visual Studio 2013. If you just have the binary you will need to get an updated version from the author.

.. Or Rename "Microsoft.VCLibs.110" to Name="Microsoft.VCLibs.110.00",

Or

Add a reference in your project to Microsoft Visual C++ Runtime Package

Add reference and find this Package. Adding this should resolve your problem



来源:https://stackoverflow.com/questions/20545765/microsoft-visual-c-runtime-package-framework-is-missing-the-framework-dependen

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!