diff options
author | Rob Mensching <rob@firegiant.com> | 2019-02-28 17:03:31 -0800 |
---|---|---|
committer | Rob Mensching <rob@robmensching.com> | 2019-03-01 07:57:55 -0800 |
commit | 138e65b99c215eb8277ad60c16cf7ceb0faff842 (patch) | |
tree | 21a4661af3b43904b620907591ba8dfefd54258a /src/WixToolset.Core/Compiler.cs | |
parent | a4be3486b60d232b546f438bc4bd7a4a80cf330c (diff) | |
download | wix-138e65b99c215eb8277ad60c16cf7ceb0faff842.tar.gz wix-138e65b99c215eb8277ad60c16cf7ceb0faff842.tar.bz2 wix-138e65b99c215eb8277ad60c16cf7ceb0faff842.zip |
Rename WixVariableResolver to VariableResolver
Diffstat (limited to 'src/WixToolset.Core/Compiler.cs')
-rw-r--r-- | src/WixToolset.Core/Compiler.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/WixToolset.Core/Compiler.cs b/src/WixToolset.Core/Compiler.cs index da42506a..a175bc77 100644 --- a/src/WixToolset.Core/Compiler.cs +++ b/src/WixToolset.Core/Compiler.cs | |||
@@ -46,7 +46,7 @@ namespace WixToolset.Core | |||
46 | private string activeLanguage; | 46 | private string activeLanguage; |
47 | 47 | ||
48 | // TODO: Implement this differently to not require the VariableResolver. | 48 | // TODO: Implement this differently to not require the VariableResolver. |
49 | private WixVariableResolver componentIdPlaceholdersResolver; | 49 | private VariableResolver componentIdPlaceholdersResolver; |
50 | 50 | ||
51 | /// <summary> | 51 | /// <summary> |
52 | /// Type of RadioButton element in a group. | 52 | /// Type of RadioButton element in a group. |
@@ -132,7 +132,7 @@ namespace WixToolset.Core | |||
132 | 132 | ||
133 | this.Core = new CompilerCore(target, this.Messaging, parseHelper, extensionsByNamespace); | 133 | this.Core = new CompilerCore(target, this.Messaging, parseHelper, extensionsByNamespace); |
134 | this.Core.ShowPedanticMessages = this.ShowPedanticMessages; | 134 | this.Core.ShowPedanticMessages = this.ShowPedanticMessages; |
135 | this.componentIdPlaceholdersResolver = new WixVariableResolver(this.ServiceProvider); | 135 | this.componentIdPlaceholdersResolver = new VariableResolver(this.ServiceProvider); |
136 | 136 | ||
137 | // parse the document | 137 | // parse the document |
138 | var source = this.Context.Source; | 138 | var source = this.Context.Source; |