aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/Compiler.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Core/Compiler.cs')
-rw-r--r--src/WixToolset.Core/Compiler.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/WixToolset.Core/Compiler.cs b/src/WixToolset.Core/Compiler.cs
index e0475baa..903aae61 100644
--- a/src/WixToolset.Core/Compiler.cs
+++ b/src/WixToolset.Core/Compiler.cs
@@ -7137,7 +7137,7 @@ namespace WixToolset
7137 } 7137 }
7138 7138
7139 // finally, schedule RemoveExistingProducts 7139 // finally, schedule RemoveExistingProducts
7140 row = this.Core.CreateRow(sourceLineNumbers, TupleDefinitionType.WixAction); 7140 row = this.Core.CreateRow(sourceLineNumbers, TupleDefinitionType.WixAction, new Identifier("InstallExecuteSequence/RemoveExistingProducts", AccessModifier.Public));
7141 row.Set(0, "InstallExecuteSequence"); 7141 row.Set(0, "InstallExecuteSequence");
7142 row.Set(1, "RemoveExistingProducts"); 7142 row.Set(1, "RemoveExistingProducts");
7143 // row.Set(2, condition); 7143 // row.Set(2, condition);
@@ -7641,11 +7641,11 @@ namespace WixToolset
7641 row.Set(4, diskId); 7641 row.Set(4, diskId);
7642 if (YesNoType.Yes == fileCompression) 7642 if (YesNoType.Yes == fileCompression)
7643 { 7643 {
7644 row.Set(5, 1); 7644 row.Set(5, true);
7645 } 7645 }
7646 else if (YesNoType.No == fileCompression) 7646 else if (YesNoType.No == fileCompression)
7647 { 7647 {
7648 row.Set(5, 0); 7648 row.Set(5, false);
7649 } 7649 }
7650 else // YesNoType.NotSet == fileCompression 7650 else // YesNoType.NotSet == fileCompression
7651 { 7651 {
@@ -9525,7 +9525,7 @@ namespace WixToolset
9525 var patchIdRow = this.Core.CreateRow(sourceLineNumbers, TupleDefinitionType.WixPatchId); 9525 var patchIdRow = this.Core.CreateRow(sourceLineNumbers, TupleDefinitionType.WixPatchId);
9526 patchIdRow.Set(0, patchId); 9526 patchIdRow.Set(0, patchId);
9527 patchIdRow.Set(1, clientPatchId); 9527 patchIdRow.Set(1, clientPatchId);
9528 patchIdRow.Set(2, optimizePatchSizeForLargeFiles ? 1 : 0); 9528 patchIdRow.Set(2, optimizePatchSizeForLargeFiles);
9529 patchIdRow.Set(3, apiPatchingSymbolFlags); 9529 patchIdRow.Set(3, apiPatchingSymbolFlags);
9530 9530
9531 if (allowRemoval) 9531 if (allowRemoval)