@joebigelow / wix-1 / commits / c6206813

Add missing InstallInitialize in AdvtExecuteSequence

Rob Mensching committed Dec 26, 2018 at 12:42 UTC c620681374ad7fbf38ebeb53255bdf140fa90c28
1 file changed +2 -1
src/WixToolset.Core.WindowsInstaller/Bind/SequenceActionsCommand.cs
+2 -1
@@ -1,4 +1,4 @@
1 -// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
1 +// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
2
3 namespace WixToolset.Core.WindowsInstaller.Bind
4 {
@@ -373,6 +373,7 @@ namespace WixToolset.Core.WindowsInstaller.Bind
373 // AdvtExecuteSequence table
374 set.Add("AdvtExecuteSequence/CostFinalize");
375 set.Add("AdvtExecuteSequence/CostInitialize");
376 + set.Add("AdvtExecuteSequence/InstallInitialize");
377 set.Add("AdvtExecuteSequence/InstallFinalize");
378 set.Add("AdvtExecuteSequence/InstallValidate");
379 set.Add("AdvtExecuteSequence/PublishFeatures");