diff options
Diffstat (limited to '')
-rw-r--r-- | src/WixToolset.Data/Tuples/CustomActionTuple.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/WixToolset.Data/Tuples/CustomActionTuple.cs b/src/WixToolset.Data/Tuples/CustomActionTuple.cs index 9c92593a..fbda67fa 100644 --- a/src/WixToolset.Data/Tuples/CustomActionTuple.cs +++ b/src/WixToolset.Data/Tuples/CustomActionTuple.cs | |||
@@ -93,7 +93,7 @@ namespace WixToolset.Data.Tuples | |||
93 | 93 | ||
94 | public string Source | 94 | public string Source |
95 | { | 95 | { |
96 | get => (string)this.Fields[(int)CustomActionTupleFields.Source]?.Value; | 96 | get => (string)this.Fields[(int)CustomActionTupleFields.Source]; |
97 | set => this.Set((int)CustomActionTupleFields.Source, value); | 97 | set => this.Set((int)CustomActionTupleFields.Source, value); |
98 | } | 98 | } |
99 | 99 | ||
@@ -105,7 +105,7 @@ namespace WixToolset.Data.Tuples | |||
105 | 105 | ||
106 | public string Target | 106 | public string Target |
107 | { | 107 | { |
108 | get => (string)this.Fields[(int)CustomActionTupleFields.Target]?.Value; | 108 | get => (string)this.Fields[(int)CustomActionTupleFields.Target]; |
109 | set => this.Set((int)CustomActionTupleFields.Target, value); | 109 | set => this.Set((int)CustomActionTupleFields.Target, value); |
110 | } | 110 | } |
111 | 111 | ||