Okay we think we have this fixed now.

Our MSBuild target file had the following:
  
  <Target Name="SignBundle">
    <MSBuild.ExtensionPack.Framework.MSBuildHelper
TaskAction="StringToItemCol" ItemString="$(TargetPath)" Separator=";">
      <Output TaskParameter="OutputItems" ItemName="TargetPathItem"/>
    </MSBuild.ExtensionPack.Framework.MSBuildHelper>
    <Exec 
      Condition="'$(SignThisFile)' != 'false'"
      Command = '"$(SignToolCommand)" $(SignToolArgs) /d
"%(TargetPathItem.filename)%(TargetPathItem.extension)"
"%(TargetPathItem.Identity)"'
    />
  </Target>

and this was causing the issue. We change it to the following and so far it
seems to be working:
  
  <Target Name="SignBundle">
    <Exec 
      Condition="'$(SignThisFile)' != 'false'"
      Command = '"$(SignToolCommand)" $(SignToolArgs) "@(SignBundle)"'
    />
  </Target>
  
  <Target Name="SignBundleEngine">
    <Exec 
      Condition="'$(SignThisFile)' != 'false'"
      Command = '"$(SignToolCommand)" $(SignToolArgs) "@(SignBundleEngine)"'
    />
  </Target>

We'll do a bit more testing to verify, but so far it seems to have fixed the
issue.




--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Wix-3-7-Burn-error-0x80004005-Failed-to-extract-all-files-from-container-tp7587152p7587595.html
Sent from the wix-users mailing list archive at Nabble.com.

------------------------------------------------------------------------------
See everything from the browser to the database with AppDynamics
Get end-to-end visibility with application monitoring from AppDynamics
Isolate bottlenecks and diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831&iu=/4140/ostg.clktrk
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to