WIX Toolset: Прописать установку сертификата в хранилище Windows
В Files.wxs имеется следующий кусочек кода
<Component Id="LicCert.cer" Guid="*">
<iis:Certificate xmlns:iis="http://schemas.microsoft.com/wix/IIsExtension"
Id="LicenseCertificate"
BinaryKey="тут_сертификат"
Name="License.cer"
Request="no"
StoreLocation="localMachine"
StoreName="trustedPublisher"
Overwrite="yes" />
</Component>
Однако при попытке сборки Wix-проекта у меня падает ошибка:
The Component element contains an unhandled extension element 'iis:Certificate'. Please ensure that the extension for elements in the 'http://schemas.microsoft.com/wix/IIsExtension' namespace has been provided.
Подскажите чего не хватает, может мне ссылка куда-то нужна в проекте.