Re: [WiX-users] Digitially signing a bundle

2012-10-07 Thread Ben Clothier
Apologies, I spoke too soon - Some property group did have attribute that changes the condition they are used under, akin to VS's Configuration Manager. So, I added SignOutput to each PropertyGroup for different configuration builds and everything worked as expected. So thank you very much, Milan

Re: [WiX-users] Digitially signing a bundle

2012-10-07 Thread Ben Clothier
Milan, Thank you very much for your helpful advice. I've added SignOutput to both my MSI and Bundle WIX projects. There were multiple PropertyGroup elements in both but since they had no attributes I assumed they didn't mattered which I put it. I sticked it in one where there were elements for Ou

Re: [WiX-users] Digitially signing a bundle

2012-10-06 Thread Milan Kaše
In your bundle a MSIs wixprojs set SignOutput to true: ... true Then for MSIs add target SignMsi and for bundle add targets SignBundleEngine and SignBundle. In these targets use SignFile task or Exec task to sign the output files. (Note that for MSIs you cannot use the SignFile tas

[WiX-users] Digitially signing a bundle

2012-10-06 Thread Ben Clothier
I discovered that there are few more steps required to distribute a signed bundle. Somebody was quite thoughtful to post this snippet which I added to wixproj file: http://wyrdfish.wordpress.com/2012/07/10/digitally-signing-your-bundle-with- wix/ However, it's apparent I'm missing something mo