aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2020-01-12 14:06:40 -0800
committerRob Mensching <rob@firegiant.com>2020-01-12 14:08:03 -0800
commita2b1235d9c0dfba48b1badac428d89d1137da698 (patch)
treedf1f89c8f860582e09e3897dea6a58bfc82b7c9b /src
parent1f57a3f457f60b4a1bfdc76b47f5e14044ec5f2c (diff)
downloadwix-a2b1235d9c0dfba48b1badac428d89d1137da698.tar.gz
wix-a2b1235d9c0dfba48b1badac428d89d1137da698.tar.bz2
wix-a2b1235d9c0dfba48b1badac428d89d1137da698.zip
Binary Data is now a path value
Diffstat (limited to 'src')
-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 63d28e39..0c3d4c9c 100644
--- a/src/WixToolset.Core/Compiler.cs
+++ b/src/WixToolset.Core/Compiler.cs
@@ -739,7 +739,7 @@ namespace WixToolset.Core
739 { 739 {
740 var tuple = new BinaryTuple(sourceLineNumbers, id) 740 var tuple = new BinaryTuple(sourceLineNumbers, id)
741 { 741 {
742 Data = sourceFile 742 Data = new IntermediateFieldPathValue { Path = sourceFile }
743 }; 743 };
744 744
745 this.Core.AddTuple(tuple); 745 this.Core.AddTuple(tuple);