diff options
Diffstat (limited to 'src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs')
| -rw-r--r-- | src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs b/src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs index 16517e91..31d0b3a6 100644 --- a/src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs +++ b/src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs | |||
| @@ -803,7 +803,10 @@ namespace WixToolset.Core.WindowsInstaller.Bind | |||
| 803 | row[1] = tuple.Name; | 803 | row[1] = tuple.Name; |
| 804 | row[2] = events; | 804 | row[2] = events; |
| 805 | row[3] = tuple.Arguments; | 805 | row[3] = tuple.Arguments; |
| 806 | row[4] = tuple.Wait; | 806 | if (tuple.Wait.HasValue) |
| 807 | { | ||
| 808 | row[4] = tuple.Wait.Value ? 1 : 0; | ||
| 809 | } | ||
| 807 | row[5] = tuple.ComponentRef; | 810 | row[5] = tuple.ComponentRef; |
| 808 | } | 811 | } |
| 809 | 812 | ||
