I have a MSI file I built in Wix, which uses a ReserveCost element in a Component to display the size of a feature which is mostly installed by a CustomAction.
When the MSI is executed by itself, the feature space required by this component shows up perfectly in the CustomizeDlg dialog, but when I include it in a Burn bootstrapper bundle the feature space shows a value which does not include the ReserveCost space.
Here's the MsiPackage element:
<MsiPackage Id="ARMDCore" Name="ARMDCore.msi"
SourceFile="..\ARMDCore\bin\Debug\ARMDCore.msi"
DisplayInternalUI="yes" Vital="yes" Compressed="no"
Cache="no" InstallSize="50000000" />
Here's the ReserveCost element:
<ReserveCost Id="ARMDPublicReserveCost" Directory="ARMDPUBLIC"
RunFromSource="16347877" RunLocal="16347877"/>
Any ideas on what causes this and the fix would be greatly appreciated.