summaryrefslogtreecommitdiff
path: root/src/tools/heat/UtilFinalizeHarvesterMutator.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/heat/UtilFinalizeHarvesterMutator.cs')
-rw-r--r--src/tools/heat/UtilFinalizeHarvesterMutator.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/heat/UtilFinalizeHarvesterMutator.cs b/src/tools/heat/UtilFinalizeHarvesterMutator.cs
index 5af56e89..61bb8731 100644
--- a/src/tools/heat/UtilFinalizeHarvesterMutator.cs
+++ b/src/tools/heat/UtilFinalizeHarvesterMutator.cs
@@ -1076,9 +1076,9 @@ namespace WixToolset.Harvesters
1076 foreach (Wix.MultiStringValue multiStringValue in registryValue.Children) 1076 foreach (Wix.MultiStringValue multiStringValue in registryValue.Children)
1077 { 1077 {
1078 // first replace file paths with their MSI tokens 1078 // first replace file paths with their MSI tokens
1079 multiStringValue.Content = this.MutateRegistryString(multiStringValue.Content, (ICollection)this.filePaths); 1079 multiStringValue.Value = this.MutateRegistryString(multiStringValue.Value, (ICollection)this.filePaths);
1080 // next replace directory paths with their MSI tokens 1080 // next replace directory paths with their MSI tokens
1081 multiStringValue.Content = this.MutateRegistryString(multiStringValue.Content, (ICollection)reversedDirectoryPaths); 1081 multiStringValue.Value = this.MutateRegistryString(multiStringValue.Value, (ICollection)reversedDirectoryPaths);
1082 } 1082 }
1083 } 1083 }
1084 else 1084 else