Windows 8 / Metro 认证要求 - 如何检查?
为了让您的应用程序获得 Windows 8 认证,微软表示您需要“仅使用 Metro 风格应用程序的 API”(参考)
是否有一个工具可以用来检查现有的 C++ 代码,以查明您现有的应用程序是否合规?
In order to get your application certified for Windows 8, Microsoft says that you need to "only use APIs for Metro Style Apps" (reference)
Is there a tool that can be used to check against existing C++ code to find out if your existing application is in compliance?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 Windows 应用程序认证工具包 (WACK),它作为 Windows 8 开发人员预览版的一部分安装。您可以在 MSDN 上找到使用它的说明:
如果您想测试现有库,您可以创建一个引用这些库的 Metro 风格应用程序并在该应用程序上运行 WACK。 (请注意,如果您想测试静态库,您需要从应用程序中行使足够的功能,以便链接到其所有功能。)
Use the Windows App Certification Kit (WACK), which is installed as part of the Windows 8 Developer Preview. You can find instructions for using it on MSDN:
If you want to test existing libraries, you can create a Metro-style app that references those libraries and run WACK on that app. (Note, if you want to test a static library, you need to exercise enough of its functionality from the app so that all of its functions get linked in.)