@joebigelow / wix-1 / commits / 3cb3464e

Binary Data should be path value

Rob Mensching committed Jan 12, 2020 at 13:49 UTC 3cb3464e12bcaee6b0555fce05b96a56e3f6c375
1 file changed +2 -2
src/WixToolset.Data/Tuples/BinaryTuple.cs
+2 -2
@@ -35,9 +35,9 @@ namespace WixToolset.Data.Tuples
35
36 public IntermediateField this[BinaryTupleFields index] => this.Fields[(int)index];
37
38 - public string Data
38 + public IntermediateFieldPathValue Data
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);
42 }
43 }