From 6a44e7d41c8b87e95f195f732402fb928c7079c1 Mon Sep 17 00:00:00 2001 From: Bob Arnson Date: Thu, 27 Feb 2020 13:39:49 -0500 Subject: Detect MSIL for assembly name harvesting. --- src/WixToolset.Core/VariableResolver.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/WixToolset.Core') diff --git a/src/WixToolset.Core/VariableResolver.cs b/src/WixToolset.Core/VariableResolver.cs index 189fb883..3e0b65b3 100644 --- a/src/WixToolset.Core/VariableResolver.cs +++ b/src/WixToolset.Core/VariableResolver.cs @@ -99,7 +99,7 @@ namespace WixToolset.Core var sb = new StringBuilder(value); // notice how this code walks backward through the list - // because it modifies the string as we through it + // because it modifies the string as we move through it for (int i = matches.Count - 1; 0 <= i; i--) { var variableNamespace = matches[i].Groups["namespace"].Value; -- cgit v1.2.3-55-g6feb