diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/WixToolset.Data/Tuples/BinaryTuple.cs | 4 |
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 | } |
