diff options
author | Rob Mensching <rob@firegiant.com> | 2022-12-06 15:55:18 -0800 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2022-12-06 17:29:07 -0800 |
commit | fb0a8b74b598331dcf037d97a3adf89f5fe5ba92 (patch) | |
tree | e66f9b50a04a2589602c89cab8449e2bb9a8e88d /src/tools/heat/RegFileHarvester.cs | |
parent | aa591db212c3df5a5c9f501c01fb1fbf2deadb7c (diff) | |
download | wix-fb0a8b74b598331dcf037d97a3adf89f5fe5ba92.tar.gz wix-fb0a8b74b598331dcf037d97a3adf89f5fe5ba92.tar.bz2 wix-fb0a8b74b598331dcf037d97a3adf89f5fe5ba92.zip |
Correctly harvest registry files with multisz
Fixes 7044
Diffstat (limited to 'src/tools/heat/RegFileHarvester.cs')
-rw-r--r-- | src/tools/heat/RegFileHarvester.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/heat/RegFileHarvester.cs b/src/tools/heat/RegFileHarvester.cs index fcb4a9c2..49cf4c01 100644 --- a/src/tools/heat/RegFileHarvester.cs +++ b/src/tools/heat/RegFileHarvester.cs | |||
@@ -200,7 +200,7 @@ namespace WixToolset.Harvesters | |||
200 | foreach (string part in parts) | 200 | foreach (string part in parts) |
201 | { | 201 | { |
202 | Wix.MultiStringValue multiStringValue = new Wix.MultiStringValue(); | 202 | Wix.MultiStringValue multiStringValue = new Wix.MultiStringValue(); |
203 | multiStringValue.Content = part; | 203 | multiStringValue.Value = part; |
204 | registryValue.AddChild(multiStringValue); | 204 | registryValue.AddChild(multiStringValue); |
205 | } | 205 | } |
206 | 206 | ||