From a6be2d64ff43f0ddd81f448dd889b4458bd734b0 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Thu, 23 May 2019 17:07:13 -0700 Subject: Shortcut ShowCmd is nullable --- src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs b/src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs index 9001b704..e7269058 100644 --- a/src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs +++ b/src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs @@ -719,7 +719,7 @@ namespace WixToolset.Core.WindowsInstaller.Bind row[7] = tuple.Hotkey; row[8] = tuple.IconRef; row[9] = tuple.IconIndex; - row[10] = (int)tuple.Show; + row[10] = (int?)tuple.Show; row[11] = tuple.WorkingDirectory; row[12] = tuple.DisplayResourceDll; row[13] = tuple.DisplayResourceId; -- cgit v1.2.3-55-g6feb