public CreateBundleExtensionManifestCommand(IntermediateSection section, WixBundleSymbol bundleSymbol, int lastUXPayloadIndex, string intermediateFolder, IInternalBurnBackendHelper internalBurnBackendHelper)
 {
     this.Section                   = section;
     this.BundleSymbol              = bundleSymbol;
     this.LastUXPayloadIndex        = lastUXPayloadIndex;
     this.IntermediateFolder        = intermediateFolder;
     this.InternalBurnBackendHelper = internalBurnBackendHelper;
 }
Пример #2
0
 public CreateBootstrapperApplicationManifestCommand(IntermediateSection section, WixBundleSymbol bundleSymbol, IEnumerable <PackageFacade> chainPackages, int lastUXPayloadIndex, Dictionary <string, WixBundlePayloadSymbol> payloadSymbols, string intermediateFolder, IInternalBurnBackendHelper internalBurnBackendHelper)
 {
     this.Section                   = section;
     this.BundleSymbol              = bundleSymbol;
     this.ChainPackages             = chainPackages;
     this.LastUXPayloadIndex        = lastUXPayloadIndex;
     this.Payloads                  = payloadSymbols;
     this.IntermediateFolder        = intermediateFolder;
     this.InternalBurnBackendHelper = internalBurnBackendHelper;
 }