aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core.Burn
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2021-03-23 02:44:02 -0700
committerRob Mensching <rob@firegiant.com>2021-03-23 02:47:41 -0700
commit8a3ce82d689e16424620e3b52161f19771d19d1d (patch)
tree698c5a996226696ce4a45094a62358a1fc0461f8 /src/WixToolset.Core.Burn
parent734be59ad7edaa1444f713338fcdbc0c4b9c273b (diff)
downloadwix-8a3ce82d689e16424620e3b52161f19771d19d1d.tar.gz
wix-8a3ce82d689e16424620e3b52161f19771d19d1d.tar.bz2
wix-8a3ce82d689e16424620e3b52161f19771d19d1d.zip
Correctly set Compressed, Description, DisplayName in BootstrapperApplicationData
Fixes wixtoolset/issues#6371 Fixes wixtoolset/issues#6372
Diffstat (limited to 'src/WixToolset.Core.Burn')
-rw-r--r--src/WixToolset.Core.Burn/Bundles/CreateBootstrapperApplicationManifestCommand.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WixToolset.Core.Burn/Bundles/CreateBootstrapperApplicationManifestCommand.cs b/src/WixToolset.Core.Burn/Bundles/CreateBootstrapperApplicationManifestCommand.cs
index 1fdd76da..f61dce46 100644
--- a/src/WixToolset.Core.Burn/Bundles/CreateBootstrapperApplicationManifestCommand.cs
+++ b/src/WixToolset.Core.Burn/Bundles/CreateBootstrapperApplicationManifestCommand.cs
@@ -129,7 +129,7 @@ namespace WixToolset.Core.Burn.Bundles
129 writer.WriteAttributeString("Permanent", package.PackageSymbol.Permanent ? "yes" : "no"); 129 writer.WriteAttributeString("Permanent", package.PackageSymbol.Permanent ? "yes" : "no");
130 writer.WriteAttributeString("LogPathVariable", package.PackageSymbol.LogPathVariable); 130 writer.WriteAttributeString("LogPathVariable", package.PackageSymbol.LogPathVariable);
131 writer.WriteAttributeString("RollbackLogPathVariable", package.PackageSymbol.RollbackLogPathVariable); 131 writer.WriteAttributeString("RollbackLogPathVariable", package.PackageSymbol.RollbackLogPathVariable);
132 writer.WriteAttributeString("Compressed", packagePayload.Compressed == true ? "yes" : "no"); 132 writer.WriteAttributeString("Compressed", packagePayload.Packaging == PackagingType.Embedded ? "yes" : "no");
133 133
134 if (package.SpecificPackageSymbol is WixBundleMsiPackageSymbol msiPackage) 134 if (package.SpecificPackageSymbol is WixBundleMsiPackageSymbol msiPackage)
135 { 135 {