diff options
Diffstat (limited to 'src/wix/WixToolset.Core/ExtensibilityServices/ParseHelper.cs')
-rw-r--r-- | src/wix/WixToolset.Core/ExtensibilityServices/ParseHelper.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/wix/WixToolset.Core/ExtensibilityServices/ParseHelper.cs b/src/wix/WixToolset.Core/ExtensibilityServices/ParseHelper.cs index 5ccaffdc..52a7cf12 100644 --- a/src/wix/WixToolset.Core/ExtensibilityServices/ParseHelper.cs +++ b/src/wix/WixToolset.Core/ExtensibilityServices/ParseHelper.cs | |||
@@ -242,7 +242,7 @@ namespace WixToolset.Core.ExtensibilityServices | |||
242 | }); | 242 | }); |
243 | } | 243 | } |
244 | 244 | ||
245 | public void CreateWixSearchSymbol(IntermediateSection section, SourceLineNumber sourceLineNumbers, string elementName, Identifier id, string variable, string condition, string after, string bundleExtensionId) | 245 | public void CreateWixSearchSymbol(IntermediateSection section, SourceLineNumber sourceLineNumbers, string elementName, Identifier id, string variable, string condition, string after, string bootstrapperExtensionId) |
246 | { | 246 | { |
247 | if (variable == null) | 247 | if (variable == null) |
248 | { | 248 | { |
@@ -257,7 +257,7 @@ namespace WixToolset.Core.ExtensibilityServices | |||
257 | { | 257 | { |
258 | Variable = variable, | 258 | Variable = variable, |
259 | Condition = condition, | 259 | Condition = condition, |
260 | BundleExtensionRef = bundleExtensionId, | 260 | BootstrapperExtensionRef = bootstrapperExtensionId, |
261 | }); | 261 | }); |
262 | 262 | ||
263 | if (after != null) | 263 | if (after != null) |
@@ -267,9 +267,9 @@ namespace WixToolset.Core.ExtensibilityServices | |||
267 | this.CreateWixSearchRelationSymbol(section, sourceLineNumbers, id, after, 2); | 267 | this.CreateWixSearchRelationSymbol(section, sourceLineNumbers, id, after, 2); |
268 | } | 268 | } |
269 | 269 | ||
270 | if (!String.IsNullOrEmpty(bundleExtensionId)) | 270 | if (!String.IsNullOrEmpty(bootstrapperExtensionId)) |
271 | { | 271 | { |
272 | this.CreateSimpleReference(section, sourceLineNumbers, SymbolDefinitions.WixBundleExtension, bundleExtensionId); | 272 | this.CreateSimpleReference(section, sourceLineNumbers, SymbolDefinitions.WixBootstrapperExtension, bootstrapperExtensionId); |
273 | } | 273 | } |
274 | } | 274 | } |
275 | 275 | ||