diff options
Diffstat (limited to 'src/wixext/Tuples')
-rw-r--r-- | src/wixext/Tuples/SecureObjectsTuple.cs | 4 | ||||
-rw-r--r-- | src/wixext/Tuples/ServiceConfigTuple.cs | 8 | ||||
-rw-r--r-- | src/wixext/Tuples/WixCloseApplicationTuple.cs | 12 | ||||
-rw-r--r-- | src/wixext/Tuples/WixInternetShortcutTuple.cs | 4 | ||||
-rw-r--r-- | src/wixext/Tuples/XmlConfigTuple.cs | 4 | ||||
-rw-r--r-- | src/wixext/Tuples/XmlFileTuple.cs | 4 |
6 files changed, 18 insertions, 18 deletions
diff --git a/src/wixext/Tuples/SecureObjectsTuple.cs b/src/wixext/Tuples/SecureObjectsTuple.cs index dd658be1..3602a5ea 100644 --- a/src/wixext/Tuples/SecureObjectsTuple.cs +++ b/src/wixext/Tuples/SecureObjectsTuple.cs | |||
@@ -72,9 +72,9 @@ namespace WixToolset.Util.Tuples | |||
72 | set => this.Set((int)SecureObjectsTupleFields.User, value); | 72 | set => this.Set((int)SecureObjectsTupleFields.User, value); |
73 | } | 73 | } |
74 | 74 | ||
75 | public int Permission | 75 | public int? Permission |
76 | { | 76 | { |
77 | get => this.Fields[(int)SecureObjectsTupleFields.Permission].AsNumber(); | 77 | get => this.Fields[(int)SecureObjectsTupleFields.Permission].AsNullableNumber(); |
78 | set => this.Set((int)SecureObjectsTupleFields.Permission, value); | 78 | set => this.Set((int)SecureObjectsTupleFields.Permission, value); |
79 | } | 79 | } |
80 | 80 | ||
diff --git a/src/wixext/Tuples/ServiceConfigTuple.cs b/src/wixext/Tuples/ServiceConfigTuple.cs index e5fc3992..714396bc 100644 --- a/src/wixext/Tuples/ServiceConfigTuple.cs +++ b/src/wixext/Tuples/ServiceConfigTuple.cs | |||
@@ -92,15 +92,15 @@ namespace WixToolset.Util.Tuples | |||
92 | set => this.Set((int)ServiceConfigTupleFields.ThirdFailureActionType, value); | 92 | set => this.Set((int)ServiceConfigTupleFields.ThirdFailureActionType, value); |
93 | } | 93 | } |
94 | 94 | ||
95 | public int ResetPeriodInDays | 95 | public int? ResetPeriodInDays |
96 | { | 96 | { |
97 | get => this.Fields[(int)ServiceConfigTupleFields.ResetPeriodInDays].AsNumber(); | 97 | get => this.Fields[(int)ServiceConfigTupleFields.ResetPeriodInDays].AsNullableNumber(); |
98 | set => this.Set((int)ServiceConfigTupleFields.ResetPeriodInDays, value); | 98 | set => this.Set((int)ServiceConfigTupleFields.ResetPeriodInDays, value); |
99 | } | 99 | } |
100 | 100 | ||
101 | public int RestartServiceDelayInSeconds | 101 | public int? RestartServiceDelayInSeconds |
102 | { | 102 | { |
103 | get => this.Fields[(int)ServiceConfigTupleFields.RestartServiceDelayInSeconds].AsNumber(); | 103 | get => this.Fields[(int)ServiceConfigTupleFields.RestartServiceDelayInSeconds].AsNullableNumber(); |
104 | set => this.Set((int)ServiceConfigTupleFields.RestartServiceDelayInSeconds, value); | 104 | set => this.Set((int)ServiceConfigTupleFields.RestartServiceDelayInSeconds, value); |
105 | } | 105 | } |
106 | 106 | ||
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 | } |
diff --git a/src/wixext/Tuples/WixInternetShortcutTuple.cs b/src/wixext/Tuples/WixInternetShortcutTuple.cs index 935d9462..b0dff121 100644 --- a/src/wixext/Tuples/WixInternetShortcutTuple.cs +++ b/src/wixext/Tuples/WixInternetShortcutTuple.cs | |||
@@ -86,9 +86,9 @@ namespace WixToolset.Util.Tuples | |||
86 | set => this.Set((int)WixInternetShortcutTupleFields.IconFile, value); | 86 | set => this.Set((int)WixInternetShortcutTupleFields.IconFile, value); |
87 | } | 87 | } |
88 | 88 | ||
89 | public int IconIndex | 89 | public int? IconIndex |
90 | { | 90 | { |
91 | get => this.Fields[(int)WixInternetShortcutTupleFields.IconIndex].AsNumber(); | 91 | get => this.Fields[(int)WixInternetShortcutTupleFields.IconIndex].AsNullableNumber(); |
92 | set => this.Set((int)WixInternetShortcutTupleFields.IconIndex, value); | 92 | set => this.Set((int)WixInternetShortcutTupleFields.IconIndex, value); |
93 | } | 93 | } |
94 | } | 94 | } |
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 | } |
diff --git a/src/wixext/Tuples/XmlFileTuple.cs b/src/wixext/Tuples/XmlFileTuple.cs index e0b3bbd7..e44979ca 100644 --- a/src/wixext/Tuples/XmlFileTuple.cs +++ b/src/wixext/Tuples/XmlFileTuple.cs | |||
@@ -86,9 +86,9 @@ namespace WixToolset.Util.Tuples | |||
86 | set => this.Set((int)XmlFileTupleFields.ComponentRef, value); | 86 | set => this.Set((int)XmlFileTupleFields.ComponentRef, value); |
87 | } | 87 | } |
88 | 88 | ||
89 | public int Sequence | 89 | public int? Sequence |
90 | { | 90 | { |
91 | get => this.Fields[(int)XmlFileTupleFields.Sequence].AsNumber(); | 91 | get => this.Fields[(int)XmlFileTupleFields.Sequence].AsNullableNumber(); |
92 | set => this.Set((int)XmlFileTupleFields.Sequence, value); | 92 | set => this.Set((int)XmlFileTupleFields.Sequence, value); |
93 | } | 93 | } |
94 | } | 94 | } |