aboutsummaryrefslogtreecommitdiff
path: root/src/tools/heat/FileHarvester.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2022-08-16 18:11:54 -0700
committerRob Mensching <rob@firegiant.com>2022-08-16 23:21:06 -0700
commit94e722baab4e848a615812a45fecc8322335d1f0 (patch)
tree8b1124ba75f3b1fc55981113660407c903d45543 /src/tools/heat/FileHarvester.cs
parentda5cc586114e537461b239a882c5bbea470d812d (diff)
downloadwix-94e722baab4e848a615812a45fecc8322335d1f0.tar.gz
wix-94e722baab4e848a615812a45fecc8322335d1f0.tar.bz2
wix-94e722baab4e848a615812a45fecc8322335d1f0.zip
Update heat to use StandardDirectory element
Fixes 6631
Diffstat (limited to 'src/tools/heat/FileHarvester.cs')
-rw-r--r--src/tools/heat/FileHarvester.cs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/tools/heat/FileHarvester.cs b/src/tools/heat/FileHarvester.cs
index 886b942a..fa4e7061 100644
--- a/src/tools/heat/FileHarvester.cs
+++ b/src/tools/heat/FileHarvester.cs
@@ -80,8 +80,7 @@ namespace WixToolset.Harvesters
80 80
81 string fullPath = Path.GetFullPath(argument); 81 string fullPath = Path.GetFullPath(argument);
82 82
83 Wix.DirectoryRef directoryRef = new Wix.DirectoryRef(); 83 var directoryRef = DirectoryHelper.CreateDirectoryReference(this.rootedDirectoryRef);
84 directoryRef.Id = this.rootedDirectoryRef;
85 84
86 Wix.File file = this.HarvestFile(fullPath); 85 Wix.File file = this.HarvestFile(fullPath);
87 86