diff options
author | Rob Mensching <rob@firegiant.com> | 2017-12-02 00:44:45 -0800 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2017-12-02 00:44:45 -0800 |
commit | 53e877183abe0dbbb623c39380101bc369e9f265 (patch) | |
tree | 2b1a35e142d76013ba28d0a50e894ff477ee247a /src/WixToolset.Data/Tuples/WixFileTuple.cs | |
parent | 414bf166e07703056ad186fa8ec23a4119dd9993 (diff) | |
download | wix-53e877183abe0dbbb623c39380101bc369e9f265.tar.gz wix-53e877183abe0dbbb623c39380101bc369e9f265.tar.bz2 wix-53e877183abe0dbbb623c39380101bc369e9f265.zip |
Support tuples from extensions and make SourcePath a path instead of string
Diffstat (limited to '')
-rw-r--r-- | src/WixToolset.Data/Tuples/WixFileTuple.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/WixToolset.Data/Tuples/WixFileTuple.cs b/src/WixToolset.Data/Tuples/WixFileTuple.cs index 88dc4c82..3581e2e6 100644 --- a/src/WixToolset.Data/Tuples/WixFileTuple.cs +++ b/src/WixToolset.Data/Tuples/WixFileTuple.cs | |||
@@ -131,9 +131,9 @@ namespace WixToolset.Data.Tuples | |||
131 | set => this.Set((int)WixFileTupleFields.DiskId, value); | 131 | set => this.Set((int)WixFileTupleFields.DiskId, value); |
132 | } | 132 | } |
133 | 133 | ||
134 | public string Source | 134 | public IntermediateFieldPathValue Source |
135 | { | 135 | { |
136 | get => this.Fields[(int)WixFileTupleFields.Source].AsPath()?.Path; | 136 | get => this.Fields[(int)WixFileTupleFields.Source].AsPath(); |
137 | set => this.Set((int)WixFileTupleFields.Source, value); | 137 | set => this.Set((int)WixFileTupleFields.Source, value); |
138 | } | 138 | } |
139 | 139 | ||