diff options
Diffstat (limited to 'src/WixToolset.Core/Compiler.cs')
-rw-r--r-- | src/WixToolset.Core/Compiler.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/WixToolset.Core/Compiler.cs b/src/WixToolset.Core/Compiler.cs index 6f122f7b..7638c11e 100644 --- a/src/WixToolset.Core/Compiler.cs +++ b/src/WixToolset.Core/Compiler.cs | |||
@@ -6221,6 +6221,12 @@ namespace WixToolset.Core | |||
6221 | case "SetProperty": | 6221 | case "SetProperty": |
6222 | this.ParseSetPropertyElement(child); | 6222 | this.ParseSetPropertyElement(child); |
6223 | break; | 6223 | break; |
6224 | case "SetVariable": | ||
6225 | this.ParseSetVariableElement(child); | ||
6226 | break; | ||
6227 | case "SetVariableRef": | ||
6228 | this.ParseSimpleRefElement(child, "WixSetVariable"); | ||
6229 | break; | ||
6224 | case "SFPCatalog": | 6230 | case "SFPCatalog": |
6225 | string parentName = null; | 6231 | string parentName = null; |
6226 | this.ParseSFPCatalogElement(child, ref parentName); | 6232 | this.ParseSFPCatalogElement(child, ref parentName); |