aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/Bind/ResolveFieldsCommand.cs
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2020-03-13 20:30:06 -0400
committerBob Arnson <bob@firegiant.com>2020-03-13 20:33:50 -0400
commitd097c7deb98803f6e9e46fe20261dd761efeb993 (patch)
tree8875d6318bf08e73b2bbd2c19ccd99af00699f28 /src/WixToolset.Core/Bind/ResolveFieldsCommand.cs
parent2cae81fe9d9457c395996e6f27db0d81e250e4f2 (diff)
downloadwix-d097c7deb98803f6e9e46fe20261dd761efeb993.tar.gz
wix-d097c7deb98803f6e9e46fe20261dd761efeb993.tar.bz2
wix-d097c7deb98803f6e9e46fe20261dd761efeb993.zip
Clean up unused IVariableResolver functionality.
Handle escaped bind-time variable references.
Diffstat (limited to '')
-rw-r--r--src/WixToolset.Core/Bind/ResolveFieldsCommand.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WixToolset.Core/Bind/ResolveFieldsCommand.cs b/src/WixToolset.Core/Bind/ResolveFieldsCommand.cs
index 5cb2524d..5db878a1 100644
--- a/src/WixToolset.Core/Bind/ResolveFieldsCommand.cs
+++ b/src/WixToolset.Core/Bind/ResolveFieldsCommand.cs
@@ -62,7 +62,7 @@ namespace WixToolset.Core.Bind
62 var original = field.AsString(); 62 var original = field.AsString();
63 if (!String.IsNullOrEmpty(original)) 63 if (!String.IsNullOrEmpty(original))
64 { 64 {
65 var resolution = this.VariableResolver.ResolveVariables(tuple.SourceLineNumbers, original, false); 65 var resolution = this.VariableResolver.ResolveVariables(tuple.SourceLineNumbers, original);
66 if (resolution.UpdatedValue) 66 if (resolution.UpdatedValue)
67 { 67 {
68 field.Set(resolution.Value); 68 field.Set(resolution.Value);