From dbdd133ea6891b55d6c1494055e45eab676f0418 Mon Sep 17 00:00:00 2001 From: Sean Hall Date: Mon, 13 Apr 2020 18:25:23 +1000 Subject: Update dependencies. --- src/wixext/Tuples/SecureObjectsTuple.cs | 4 ++-- src/wixext/Tuples/ServiceConfigTuple.cs | 8 ++++---- src/wixext/Tuples/WixCloseApplicationTuple.cs | 12 ++++++------ src/wixext/Tuples/WixInternetShortcutTuple.cs | 4 ++-- src/wixext/Tuples/XmlConfigTuple.cs | 4 ++-- src/wixext/Tuples/XmlFileTuple.cs | 4 ++-- 6 files changed, 18 insertions(+), 18 deletions(-) (limited to 'src/wixext/Tuples') 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 set => this.Set((int)SecureObjectsTupleFields.User, value); } - public int Permission + public int? Permission { - get => this.Fields[(int)SecureObjectsTupleFields.Permission].AsNumber(); + get => this.Fields[(int)SecureObjectsTupleFields.Permission].AsNullableNumber(); set => this.Set((int)SecureObjectsTupleFields.Permission, value); } 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 set => this.Set((int)ServiceConfigTupleFields.ThirdFailureActionType, value); } - public int ResetPeriodInDays + public int? ResetPeriodInDays { - get => this.Fields[(int)ServiceConfigTupleFields.ResetPeriodInDays].AsNumber(); + get => this.Fields[(int)ServiceConfigTupleFields.ResetPeriodInDays].AsNullableNumber(); set => this.Set((int)ServiceConfigTupleFields.ResetPeriodInDays, value); } - public int RestartServiceDelayInSeconds + public int? RestartServiceDelayInSeconds { - get => this.Fields[(int)ServiceConfigTupleFields.RestartServiceDelayInSeconds].AsNumber(); + get => this.Fields[(int)ServiceConfigTupleFields.RestartServiceDelayInSeconds].AsNullableNumber(); set => this.Set((int)ServiceConfigTupleFields.RestartServiceDelayInSeconds, value); } 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 set => this.Set((int)WixCloseApplicationTupleFields.Attributes, value); } - public int Sequence + public int? Sequence { - get => this.Fields[(int)WixCloseApplicationTupleFields.Sequence].AsNumber(); + get => this.Fields[(int)WixCloseApplicationTupleFields.Sequence].AsNullableNumber(); set => this.Set((int)WixCloseApplicationTupleFields.Sequence, value); } @@ -88,15 +88,15 @@ namespace WixToolset.Util.Tuples set => this.Set((int)WixCloseApplicationTupleFields.Property, value); } - public int TerminateExitCode + public int? TerminateExitCode { - get => this.Fields[(int)WixCloseApplicationTupleFields.TerminateExitCode].AsNumber(); + get => this.Fields[(int)WixCloseApplicationTupleFields.TerminateExitCode].AsNullableNumber(); set => this.Set((int)WixCloseApplicationTupleFields.TerminateExitCode, value); } - public int Timeout + public int? Timeout { - get => this.Fields[(int)WixCloseApplicationTupleFields.Timeout].AsNumber(); + get => this.Fields[(int)WixCloseApplicationTupleFields.Timeout].AsNullableNumber(); set => this.Set((int)WixCloseApplicationTupleFields.Timeout, value); } } 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 set => this.Set((int)WixInternetShortcutTupleFields.IconFile, value); } - public int IconIndex + public int? IconIndex { - get => this.Fields[(int)WixInternetShortcutTupleFields.IconIndex].AsNumber(); + get => this.Fields[(int)WixInternetShortcutTupleFields.IconIndex].AsNullableNumber(); set => this.Set((int)WixInternetShortcutTupleFields.IconIndex, value); } } 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 set => this.Set((int)XmlConfigTupleFields.ComponentRef, value); } - public int Sequence + public int? Sequence { - get => this.Fields[(int)XmlConfigTupleFields.Sequence].AsNumber(); + get => this.Fields[(int)XmlConfigTupleFields.Sequence].AsNullableNumber(); set => this.Set((int)XmlConfigTupleFields.Sequence, value); } } 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 set => this.Set((int)XmlFileTupleFields.ComponentRef, value); } - public int Sequence + public int? Sequence { - get => this.Fields[(int)XmlFileTupleFields.Sequence].AsNumber(); + get => this.Fields[(int)XmlFileTupleFields.Sequence].AsNullableNumber(); set => this.Set((int)XmlFileTupleFields.Sequence, value); } } -- cgit v1.2.3-55-g6feb