diff options
Diffstat (limited to 'src/WixToolset.Data/Tuples/ControlTuple.cs')
-rw-r--r-- | src/WixToolset.Data/Tuples/ControlTuple.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/WixToolset.Data/Tuples/ControlTuple.cs b/src/WixToolset.Data/Tuples/ControlTuple.cs index ed61392e..165e40e2 100644 --- a/src/WixToolset.Data/Tuples/ControlTuple.cs +++ b/src/WixToolset.Data/Tuples/ControlTuple.cs | |||
@@ -294,9 +294,9 @@ namespace WixToolset.Data.Tuples | |||
294 | set => this.Set((int)ControlTupleFields.TrackDiskSpace, value); | 294 | set => this.Set((int)ControlTupleFields.TrackDiskSpace, value); |
295 | } | 295 | } |
296 | 296 | ||
297 | public string SourceFile | 297 | public IntermediateFieldPathValue SourceFile |
298 | { | 298 | { |
299 | get => (string)this.Fields[(int)ControlTupleFields.SourceFile]; | 299 | get => this.Fields[(int)ControlTupleFields.SourceFile].AsPath(); |
300 | set => this.Set((int)ControlTupleFields.SourceFile, value); | 300 | set => this.Set((int)ControlTupleFields.SourceFile, value); |
301 | } | 301 | } |
302 | } | 302 | } |