diff options
author | Rob Mensching <rob@firegiant.com> | 2023-01-12 11:39:43 -0800 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2023-01-12 12:47:53 -0800 |
commit | e3b4af31d93962a7bd0a417d400921e00e9e249a (patch) | |
tree | c87e10b3487464f3e539a1e632fc2ba9b76b99da /src/ext/Util/wixext/UtilCompiler.cs | |
parent | bcb75416e20cc16d85fc2c0e44a8fd78449f3b3c (diff) | |
download | wix-e3b4af31d93962a7bd0a417d400921e00e9e249a.tar.gz wix-e3b4af31d93962a7bd0a417d400921e00e9e249a.tar.bz2 wix-e3b4af31d93962a7bd0a417d400921e00e9e249a.zip |
Fix compiler to handle util:ServiceConfig absent reset period and start delay
Fixes 7150
Diffstat (limited to 'src/ext/Util/wixext/UtilCompiler.cs')
-rw-r--r-- | src/ext/Util/wixext/UtilCompiler.cs | 4 |
1 files changed, 2 insertions, 2 deletions
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 | |||
3072 | var newService = false; | 3072 | var newService = false; |
3073 | string programCommandLine = null; | 3073 | string programCommandLine = null; |
3074 | string rebootMessage = null; | 3074 | string rebootMessage = null; |
3075 | var resetPeriod = CompilerConstants.IntegerNotSet; | 3075 | int? resetPeriod = null; |
3076 | var restartServiceDelay = CompilerConstants.IntegerNotSet; | 3076 | int? restartServiceDelay = null; |
3077 | string secondFailureActionType = null; | 3077 | string secondFailureActionType = null; |
3078 | string serviceName = null; | 3078 | string serviceName = null; |
3079 | string thirdFailureActionType = null; | 3079 | string thirdFailureActionType = null; |