diff options
Diffstat (limited to 'src/wixext/Tuples/XmlConfigTuple.cs')
-rw-r--r-- | src/wixext/Tuples/XmlConfigTuple.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wixext/Tuples/XmlConfigTuple.cs b/src/wixext/Tuples/XmlConfigTuple.cs index 0eb49cac..291a686c 100644 --- a/src/wixext/Tuples/XmlConfigTuple.cs +++ b/src/wixext/Tuples/XmlConfigTuple.cs | |||
@@ -94,9 +94,9 @@ namespace WixToolset.Util.Tuples | |||
94 | set => this.Set((int)XmlConfigTupleFields.ComponentRef, value); | 94 | set => this.Set((int)XmlConfigTupleFields.ComponentRef, value); |
95 | } | 95 | } |
96 | 96 | ||
97 | public int Sequence | 97 | public int? Sequence |
98 | { | 98 | { |
99 | get => this.Fields[(int)XmlConfigTupleFields.Sequence].AsNumber(); | 99 | get => this.Fields[(int)XmlConfigTupleFields.Sequence].AsNullableNumber(); |
100 | set => this.Set((int)XmlConfigTupleFields.Sequence, value); | 100 | set => this.Set((int)XmlConfigTupleFields.Sequence, value); |
101 | } | 101 | } |
102 | } | 102 | } |