From 3cb3464e12bcaee6b0555fce05b96a56e3f6c375 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Sun, 12 Jan 2020 13:49:39 -0800 Subject: Binary Data should be path value --- src/WixToolset.Data/Tuples/BinaryTuple.cs | 4 ++-- 1 file 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 public IntermediateField this[BinaryTupleFields index] => this.Fields[(int)index]; - public string Data + public IntermediateFieldPathValue Data { - get => (string)this.Fields[(int)BinaryTupleFields.Data]; + get => this.Fields[(int)BinaryTupleFields.Data].AsPath(); set => this.Set((int)BinaryTupleFields.Data, value); } } -- cgit v1.2.3-55-g6feb