diff options
| author | Rob Mensching <rob@firegiant.com> | 2017-11-11 01:45:59 -0800 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2017-11-11 01:45:59 -0800 |
| commit | 9f8cb5374481b6c8a06eb2739858332350f72666 (patch) | |
| tree | 4b09b90d8a516cb5e7d8203759bd2489b6a5d20c /src/WixToolset.Core/Compiler.cs | |
| parent | 2bb37beda887d120a0ddabf874ad25357101faa1 (diff) | |
| download | wix-9f8cb5374481b6c8a06eb2739858332350f72666.tar.gz wix-9f8cb5374481b6c8a06eb2739858332350f72666.tar.bz2 wix-9f8cb5374481b6c8a06eb2739858332350f72666.zip | |
Additional IR updates
Diffstat (limited to 'src/WixToolset.Core/Compiler.cs')
| -rw-r--r-- | src/WixToolset.Core/Compiler.cs | 8 |
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) |
