I would like to submit a new patch to write the PackageCertificateThumbprint tag in VS projects for Windows Phone and Windows Store projects.
When creating a Windows Store project, a certificate is added to the package. There is a PackageCertificateThumbprint tag that VS will write when absent that contains the thumbprint of the associated certificate. This change tries to extract the thumbprint from the specified certificate and add the tag to the project when it can be extracted. This enables easier automated builds that do not run through the VS GUI. The change is pretty straightforward, we try to load the specified certificate when present and extract the thumbprint using the Windows Crypto APIs and adds the tag at the same time as the PackageCertificate . This adds a new dependency to crypt32.lib which is available on all versions of Windows starting with Windows XP.
CertThumb.patch
Description: CertThumb.patch
-- Powered by www.kitware.com Please keep messages on-topic and check the CMake FAQ at: http://www.cmake.org/Wiki/CMake_FAQ Kitware offers various services to support the CMake community. For more information on each offering, please visit: CMake Support: http://cmake.org/cmake/help/support.html CMake Consulting: http://cmake.org/cmake/help/consulting.html CMake Training Courses: http://cmake.org/cmake/help/training.html Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Follow this link to subscribe/unsubscribe: http://public.kitware.com/mailman/listinfo/cmake-developers
