diff options
author | Rob Mensching <rob@firegiant.com> | 2020-06-22 23:16:32 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2020-06-23 02:10:31 -0700 |
commit | 9319732abb1eee646b3540b8511b328833a1acfb (patch) | |
tree | 5b80a2872732feabad2cb43d3b3f5979da9aba03 /src | |
parent | dedb3eedbd4dd79b64a45ffa50a4edffdfcf13e1 (diff) | |
download | wix-9319732abb1eee646b3540b8511b328833a1acfb.tar.gz wix-9319732abb1eee646b3540b8511b328833a1acfb.tar.bz2 wix-9319732abb1eee646b3540b8511b328833a1acfb.zip |
Move Component\Condition inner text to Condition attribute
Diffstat (limited to 'src')
-rw-r--r-- | src/WixToolset.Core/Compiler.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/WixToolset.Core/Compiler.cs b/src/WixToolset.Core/Compiler.cs index a9b13d43..5bd923dd 100644 --- a/src/WixToolset.Core/Compiler.cs +++ b/src/WixToolset.Core/Compiler.cs | |||
@@ -2151,6 +2151,9 @@ namespace WixToolset.Core | |||
2151 | // bits |= MsiInterop.MsidbComponentAttributesDisableRegistryReflection; | 2151 | // bits |= MsiInterop.MsidbComponentAttributesDisableRegistryReflection; |
2152 | //} | 2152 | //} |
2153 | break; | 2153 | break; |
2154 | case "Condition": | ||
2155 | condition = this.Core.GetAttributeValue(sourceLineNumbers, attrib); | ||
2156 | break; | ||
2154 | case "Directory": | 2157 | case "Directory": |
2155 | directoryId = this.Core.CreateDirectoryReferenceFromInlineSyntax(sourceLineNumbers, attrib, directoryId); | 2158 | directoryId = this.Core.CreateDirectoryReferenceFromInlineSyntax(sourceLineNumbers, attrib, directoryId); |
2156 | break; | 2159 | break; |