Windows 8 / Metro certification requirements - how to check?

In order for your application to be certified for Windows 8, Microsoft states that you need to "use only the API for Metro Style applications" ( link )

Is there a tool that can be used to test existing C ++ code to find out if an existing application matches?

+6
source share
1 answer

Use the Windows App Certification Kit (WACK), which is installed as part of the Windows 8 Developer Preview. Instructions for using it can be found on MSDN:

"How to test your application using a set of Windows certificates"

If you want to test existing libraries, you can create a Metro-style application that references these libraries and launches WACK in that application. (Note that if you want to test a static library, you need to use its functionality from the application so that all its functions are connected.)

+8
source

Source: https://habr.com/ru/post/906571/


All Articles