diff options
| author | Bob Arnson <bob@firegiant.com> | 2020-01-21 19:12:53 -0500 |
|---|---|---|
| committer | Bob Arnson <bob@firegiant.com> | 2020-01-21 19:21:06 -0500 |
| commit | c2bc01b47cca2a70ddeb2cc9e9b2e3b9906bb647 (patch) | |
| tree | 3008926e61606108768fa7df0e67d7ca5be11fb1 /src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs | |
| parent | 772ed422f3195c899246f16c9c2e5b5a839d06cd (diff) | |
| download | wix-c2bc01b47cca2a70ddeb2cc9e9b2e3b9906bb647.tar.gz wix-c2bc01b47cca2a70ddeb2cc9e9b2e3b9906bb647.tar.bz2 wix-c2bc01b47cca2a70ddeb2cc9e9b2e3b9906bb647.zip | |
Fix ServiceControl/@Wait translation.
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 | ||
