aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/Compiler.cs
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2020-03-27 14:30:35 +1000
committerSean Hall <r.sean.hall@gmail.com>2020-03-30 21:30:04 +1000
commitc455d2290ef903ff36d540903e27d76d473cb67c (patch)
treeb72ab75702810bc14e6f9bd31af3e1b67739f153 /src/WixToolset.Core/Compiler.cs
parent0baf6e26ec7ab2ff0b6ad36e9d44f3d68819b5d6 (diff)
downloadwix-c455d2290ef903ff36d540903e27d76d473cb67c.tar.gz
wix-c455d2290ef903ff36d540903e27d76d473cb67c.tar.bz2
wix-c455d2290ef903ff36d540903e27d76d473cb67c.zip
Add SetVariable.
Diffstat (limited to 'src/WixToolset.Core/Compiler.cs')
-rw-r--r--src/WixToolset.Core/Compiler.cs6
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);