From e3b4af31d93962a7bd0a417d400921e00e9e249a Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Thu, 12 Jan 2023 11:39:43 -0800 Subject: Fix compiler to handle util:ServiceConfig absent reset period and start delay Fixes 7150 --- src/ext/Util/wixext/UtilCompiler.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/ext/Util/wixext/UtilCompiler.cs') diff --git a/src/ext/Util/wixext/UtilCompiler.cs b/src/ext/Util/wixext/UtilCompiler.cs index c2ae5c94..9249f74a 100644 --- a/src/ext/Util/wixext/UtilCompiler.cs +++ b/src/ext/Util/wixext/UtilCompiler.cs @@ -3072,8 +3072,8 @@ namespace WixToolset.Util var newService = false; string programCommandLine = null; string rebootMessage = null; - var resetPeriod = CompilerConstants.IntegerNotSet; - var restartServiceDelay = CompilerConstants.IntegerNotSet; + int? resetPeriod = null; + int? restartServiceDelay = null; string secondFailureActionType = null; string serviceName = null; string thirdFailureActionType = null; -- cgit v1.2.3-55-g6feb