diff options
Diffstat (limited to 'src/wixext/Tuples/WixCloseApplicationTuple.cs')
-rw-r--r-- | src/wixext/Tuples/WixCloseApplicationTuple.cs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/wixext/Tuples/WixCloseApplicationTuple.cs b/src/wixext/Tuples/WixCloseApplicationTuple.cs index cc91c326..2deebbae 100644 --- a/src/wixext/Tuples/WixCloseApplicationTuple.cs +++ b/src/wixext/Tuples/WixCloseApplicationTuple.cs | |||
@@ -76,9 +76,9 @@ namespace WixToolset.Util.Tuples | |||
76 | set => this.Set((int)WixCloseApplicationTupleFields.Attributes, value); | 76 | set => this.Set((int)WixCloseApplicationTupleFields.Attributes, value); |
77 | } | 77 | } |
78 | 78 | ||
79 | public int Sequence | 79 | public int? Sequence |
80 | { | 80 | { |
81 | get => this.Fields[(int)WixCloseApplicationTupleFields.Sequence].AsNumber(); | 81 | get => this.Fields[(int)WixCloseApplicationTupleFields.Sequence].AsNullableNumber(); |
82 | set => this.Set((int)WixCloseApplicationTupleFields.Sequence, value); | 82 | set => this.Set((int)WixCloseApplicationTupleFields.Sequence, value); |
83 | } | 83 | } |
84 | 84 | ||
@@ -88,15 +88,15 @@ namespace WixToolset.Util.Tuples | |||
88 | set => this.Set((int)WixCloseApplicationTupleFields.Property, value); | 88 | set => this.Set((int)WixCloseApplicationTupleFields.Property, value); |
89 | } | 89 | } |
90 | 90 | ||
91 | public int TerminateExitCode | 91 | public int? TerminateExitCode |
92 | { | 92 | { |
93 | get => this.Fields[(int)WixCloseApplicationTupleFields.TerminateExitCode].AsNumber(); | 93 | get => this.Fields[(int)WixCloseApplicationTupleFields.TerminateExitCode].AsNullableNumber(); |
94 | set => this.Set((int)WixCloseApplicationTupleFields.TerminateExitCode, value); | 94 | set => this.Set((int)WixCloseApplicationTupleFields.TerminateExitCode, value); |
95 | } | 95 | } |
96 | 96 | ||
97 | public int Timeout | 97 | public int? Timeout |
98 | { | 98 | { |
99 | get => this.Fields[(int)WixCloseApplicationTupleFields.Timeout].AsNumber(); | 99 | get => this.Fields[(int)WixCloseApplicationTupleFields.Timeout].AsNullableNumber(); |
100 | set => this.Set((int)WixCloseApplicationTupleFields.Timeout, value); | 100 | set => this.Set((int)WixCloseApplicationTupleFields.Timeout, value); |
101 | } | 101 | } |
102 | } | 102 | } |