diff options
Diffstat (limited to 'src/wix/heat/UtilFinalizeHarvesterMutator.cs')
-rw-r--r-- | src/wix/heat/UtilFinalizeHarvesterMutator.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/wix/heat/UtilFinalizeHarvesterMutator.cs b/src/wix/heat/UtilFinalizeHarvesterMutator.cs index 3e9f1ce7..04083bbe 100644 --- a/src/wix/heat/UtilFinalizeHarvesterMutator.cs +++ b/src/wix/heat/UtilFinalizeHarvesterMutator.cs | |||
@@ -17,7 +17,7 @@ namespace WixToolset.Harvesters | |||
17 | /// <summary> | 17 | /// <summary> |
18 | /// The finalize harvester mutator for the WiX Toolset Utility Extension. | 18 | /// The finalize harvester mutator for the WiX Toolset Utility Extension. |
19 | /// </summary> | 19 | /// </summary> |
20 | internal class UtilFinalizeHarvesterMutator : BaseMutatorExtension | 20 | public class UtilFinalizeHarvesterMutator : BaseMutatorExtension |
21 | { | 21 | { |
22 | private ArrayList components; | 22 | private ArrayList components; |
23 | private ArrayList directories; | 23 | private ArrayList directories; |
@@ -996,7 +996,7 @@ namespace WixToolset.Harvesters | |||
996 | 996 | ||
997 | // escape literal $ characters | 997 | // escape literal $ characters |
998 | file.Source = file.Source.Replace("$", "$$"); | 998 | file.Source = file.Source.Replace("$", "$$"); |
999 | 999 | ||
1000 | if (null != sourceDirSubstitution && file.Source.StartsWith("SourceDir\\", StringComparison.Ordinal)) | 1000 | if (null != sourceDirSubstitution && file.Source.StartsWith("SourceDir\\", StringComparison.Ordinal)) |
1001 | { | 1001 | { |
1002 | file.Source = file.Source.Substring(9).Insert(0, sourceDirSubstitution); | 1002 | file.Source = file.Source.Substring(9).Insert(0, sourceDirSubstitution); |
@@ -1059,7 +1059,7 @@ namespace WixToolset.Harvesters | |||
1059 | } | 1059 | } |
1060 | } | 1060 | } |
1061 | 1061 | ||
1062 | 1062 | ||
1063 | ArrayList reversedDirectoryPaths = new ArrayList(); | 1063 | ArrayList reversedDirectoryPaths = new ArrayList(); |
1064 | 1064 | ||
1065 | // reverse the indexed directory paths to ensure the longest paths are found first | 1065 | // reverse the indexed directory paths to ensure the longest paths are found first |
@@ -1090,7 +1090,7 @@ namespace WixToolset.Harvesters | |||
1090 | } | 1090 | } |
1091 | } | 1091 | } |
1092 | } | 1092 | } |
1093 | 1093 | ||
1094 | private static bool IsVb6RegistryValue(Wix.RegistryValue registryValue) | 1094 | private static bool IsVb6RegistryValue(Wix.RegistryValue registryValue) |
1095 | { | 1095 | { |
1096 | if (Wix.RegistryValue.ActionType.write == registryValue.Action && Wix.RegistryRootType.HKCR == registryValue.Root) | 1096 | if (Wix.RegistryValue.ActionType.write == registryValue.Action && Wix.RegistryRootType.HKCR == registryValue.Root) |