Hello All,

I've been trying to sign my Burn installer by following
http://wixtoolset.org/documentation/manual/v3/overview/insignia.html

I'm using Wix 3.8.1128.0

I've overridden the 2 targets as follows:

<Target Name="SignBundleEngine">
    <Exec Command="Signtool.exe sign /a &quot;@(SignBundleEngine)&quot;" />
  </Target>
  <Target Name="SignBundle">
    <Exec Command="Signtool.exe sign /a &quot;@(SignBundle)&quot;" />
  </Target>

Looking at the logs for InscribeBundleEngine target, I see that the name of
the output file ( specified by -out parameter) is same as my Bundle
name(MyBundle.exe). I'm assuming that this should be the name of the Burn
engine and hence it's overwriting MyBundle.exe with the burn engine exe of
the same name.

insignia.exe -ib MyBundle.exe -out MyBundle.exe

Is there any way in which I can configure it?

Looking at the snippet below, I expected it to be have a different name:

insignia -ib bundle.exe -o engine.exe
... sign engine.exe
insignia -ab engine.exe bundle.exe -o bundle.exe
... sign bundle.exe



--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Signing-issue-with-Burn-installer-tp7600563.html
Sent from the wix-users mailing list archive at Nabble.com.

------------------------------------------------------------------------------
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to