diff options
Diffstat (limited to 'src/WixToolset.Data/Tuples/WixActionTuple.cs')
-rw-r--r-- | src/WixToolset.Data/Tuples/WixActionTuple.cs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/WixToolset.Data/Tuples/WixActionTuple.cs b/src/WixToolset.Data/Tuples/WixActionTuple.cs index d196e560..148f28d9 100644 --- a/src/WixToolset.Data/Tuples/WixActionTuple.cs +++ b/src/WixToolset.Data/Tuples/WixActionTuple.cs | |||
@@ -60,37 +60,37 @@ namespace WixToolset.Data.Tuples | |||
60 | 60 | ||
61 | public SequenceTable SequenceTable | 61 | public SequenceTable SequenceTable |
62 | { | 62 | { |
63 | get => (SequenceTable)Enum.Parse(typeof(SequenceTable), (string)this.Fields[(int)WixActionTupleFields.SequenceTable]?.Value); | 63 | get => (SequenceTable)Enum.Parse(typeof(SequenceTable), (string)this.Fields[(int)WixActionTupleFields.SequenceTable]); |
64 | set => this.Set((int)WixActionTupleFields.SequenceTable, value.ToString()); | 64 | set => this.Set((int)WixActionTupleFields.SequenceTable, value.ToString()); |
65 | } | 65 | } |
66 | 66 | ||
67 | public string Action | 67 | public string Action |
68 | { | 68 | { |
69 | get => (string)this.Fields[(int)WixActionTupleFields.Action]?.Value; | 69 | get => (string)this.Fields[(int)WixActionTupleFields.Action]; |
70 | set => this.Set((int)WixActionTupleFields.Action, value); | 70 | set => this.Set((int)WixActionTupleFields.Action, value); |
71 | } | 71 | } |
72 | 72 | ||
73 | public string Condition | 73 | public string Condition |
74 | { | 74 | { |
75 | get => (string)this.Fields[(int)WixActionTupleFields.Condition]?.Value; | 75 | get => (string)this.Fields[(int)WixActionTupleFields.Condition]; |
76 | set => this.Set((int)WixActionTupleFields.Condition, value); | 76 | set => this.Set((int)WixActionTupleFields.Condition, value); |
77 | } | 77 | } |
78 | 78 | ||
79 | public int Sequence | 79 | public int Sequence |
80 | { | 80 | { |
81 | get => (int)this.Fields[(int)WixActionTupleFields.Sequence]?.Value; | 81 | get => (int)this.Fields[(int)WixActionTupleFields.Sequence]; |
82 | set => this.Set((int)WixActionTupleFields.Sequence, value); | 82 | set => this.Set((int)WixActionTupleFields.Sequence, value); |
83 | } | 83 | } |
84 | 84 | ||
85 | public string Before | 85 | public string Before |
86 | { | 86 | { |
87 | get => (string)this.Fields[(int)WixActionTupleFields.Before]?.Value; | 87 | get => (string)this.Fields[(int)WixActionTupleFields.Before]; |
88 | set => this.Set((int)WixActionTupleFields.Before, value); | 88 | set => this.Set((int)WixActionTupleFields.Before, value); |
89 | } | 89 | } |
90 | 90 | ||
91 | public string After | 91 | public string After |
92 | { | 92 | { |
93 | get => (string)this.Fields[(int)WixActionTupleFields.After]?.Value; | 93 | get => (string)this.Fields[(int)WixActionTupleFields.After]; |
94 | set => this.Set((int)WixActionTupleFields.After, value); | 94 | set => this.Set((int)WixActionTupleFields.After, value); |
95 | } | 95 | } |
96 | 96 | ||