aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/Compiler.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2017-11-29 22:03:26 -0800
committerRob Mensching <rob@firegiant.com>2017-11-29 22:03:26 -0800
commit71c52d5af2293d3eb79882ce36b0411f81185c11 (patch)
tree23dd116bdd6abc2b0f7b488f490d1b77faa41812 /src/WixToolset.Core/Compiler.cs
parent0fa198ed8c6c6fc81e649466879752a99fe37d08 (diff)
downloadwix-71c52d5af2293d3eb79882ce36b0411f81185c11.tar.gz
wix-71c52d5af2293d3eb79882ce36b0411f81185c11.tar.bz2
wix-71c52d5af2293d3eb79882ce36b0411f81185c11.zip
Fix source path and cabinet processing
Diffstat (limited to 'src/WixToolset.Core/Compiler.cs')
-rw-r--r--src/WixToolset.Core/Compiler.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WixToolset.Core/Compiler.cs b/src/WixToolset.Core/Compiler.cs
index 4b1ef033..406bc46a 100644
--- a/src/WixToolset.Core/Compiler.cs
+++ b/src/WixToolset.Core/Compiler.cs
@@ -5803,7 +5803,7 @@ namespace WixToolset.Core
5803 wixFileRow.File_AssemblyApplication = assemblyApplication; 5803 wixFileRow.File_AssemblyApplication = assemblyApplication;
5804 wixFileRow.Directory_ = directoryId; 5804 wixFileRow.Directory_ = directoryId;
5805 wixFileRow.DiskId = (CompilerConstants.IntegerNotSet == diskId) ? 0 : diskId; 5805 wixFileRow.DiskId = (CompilerConstants.IntegerNotSet == diskId) ? 0 : diskId;
5806 wixFileRow.Source = source; 5806 wixFileRow.Source = new IntermediateFieldPathValue { Path = source };
5807 wixFileRow.ProcessorArchitecture = procArch; 5807 wixFileRow.ProcessorArchitecture = procArch;
5808 wixFileRow.PatchGroup = (CompilerConstants.IntegerNotSet != patchGroup ? patchGroup : -1); 5808 wixFileRow.PatchGroup = (CompilerConstants.IntegerNotSet != patchGroup ? patchGroup : -1);
5809 wixFileRow.Attributes = (generatedShortFileName ? 0x1 : 0x0); 5809 wixFileRow.Attributes = (generatedShortFileName ? 0x1 : 0x0);