aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2020-01-12 13:49:39 -0800
committerRob Mensching <rob@firegiant.com>2020-01-12 13:50:03 -0800
commit3cb3464e12bcaee6b0555fce05b96a56e3f6c375 (patch)
tree6a29559b7e9086649dc566a7c3d7250d46c2d392
parentf12179866ef9963a9349ff16e11c35607d8dddef (diff)
downloadwix-3cb3464e12bcaee6b0555fce05b96a56e3f6c375.tar.gz
wix-3cb3464e12bcaee6b0555fce05b96a56e3f6c375.tar.bz2
wix-3cb3464e12bcaee6b0555fce05b96a56e3f6c375.zip
Binary Data should be path value
-rw-r--r--src/WixToolset.Data/Tuples/BinaryTuple.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/WixToolset.Data/Tuples/BinaryTuple.cs b/src/WixToolset.Data/Tuples/BinaryTuple.cs
index 9e8df73d..358f5bf6 100644
--- a/src/WixToolset.Data/Tuples/BinaryTuple.cs
+++ b/src/WixToolset.Data/Tuples/BinaryTuple.cs
@@ -35,9 +35,9 @@ namespace WixToolset.Data.Tuples
35 35
36 public IntermediateField this[BinaryTupleFields index] => this.Fields[(int)index]; 36 public IntermediateField this[BinaryTupleFields index] => this.Fields[(int)index];
37 37
38 public string Data 38 public IntermediateFieldPathValue Data
39 { 39 {
40 get => (string)this.Fields[(int)BinaryTupleFields.Data]; 40 get => this.Fields[(int)BinaryTupleFields.Data].AsPath();
41 set => this.Set((int)BinaryTupleFields.Data, value); 41 set => this.Set((int)BinaryTupleFields.Data, value);
42 } 42 }
43 } 43 }