diff options
Diffstat (limited to 'src/WixToolset.Data/Tuples/BindImageTuple.cs')
-rw-r--r-- | src/WixToolset.Data/Tuples/BindImageTuple.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/WixToolset.Data/Tuples/BindImageTuple.cs b/src/WixToolset.Data/Tuples/BindImageTuple.cs index fefafa2d..14622238 100644 --- a/src/WixToolset.Data/Tuples/BindImageTuple.cs +++ b/src/WixToolset.Data/Tuples/BindImageTuple.cs | |||
@@ -39,13 +39,13 @@ namespace WixToolset.Data.Tuples | |||
39 | 39 | ||
40 | public string File_ | 40 | public string File_ |
41 | { | 41 | { |
42 | get => (string)this.Fields[(int)BindImageTupleFields.File_]?.Value; | 42 | get => (string)this.Fields[(int)BindImageTupleFields.File_]; |
43 | set => this.Set((int)BindImageTupleFields.File_, value); | 43 | set => this.Set((int)BindImageTupleFields.File_, value); |
44 | } | 44 | } |
45 | 45 | ||
46 | public string Path | 46 | public string Path |
47 | { | 47 | { |
48 | get => (string)this.Fields[(int)BindImageTupleFields.Path]?.Value; | 48 | get => (string)this.Fields[(int)BindImageTupleFields.Path]; |
49 | set => this.Set((int)BindImageTupleFields.Path, value); | 49 | set => this.Set((int)BindImageTupleFields.Path, value); |
50 | } | 50 | } |
51 | } | 51 | } |