From d0462be8000f18aa7dc0791d02142f000bb19fbf Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Wed, 22 May 2019 00:58:13 -0700 Subject: Integrate latest changes to tuple definitions --- .../Bind/CreateSpecialPropertiesCommand.cs | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'src/WixToolset.Core.WindowsInstaller/Bind/CreateSpecialPropertiesCommand.cs') diff --git a/src/WixToolset.Core.WindowsInstaller/Bind/CreateSpecialPropertiesCommand.cs b/src/WixToolset.Core.WindowsInstaller/Bind/CreateSpecialPropertiesCommand.cs index ab2e8201..b5e5069a 100644 --- a/src/WixToolset.Core.WindowsInstaller/Bind/CreateSpecialPropertiesCommand.cs +++ b/src/WixToolset.Core.WindowsInstaller/Bind/CreateSpecialPropertiesCommand.cs @@ -44,8 +44,7 @@ namespace WixToolset.Core.WindowsInstaller.Bind if (0 < adminProperties.Count) { - var tuple = new PropertyTuple(null, new Identifier("AdminProperties", AccessModifier.Private)); - tuple.Property = "AdminProperties"; + var tuple = new PropertyTuple(null, new Identifier(AccessModifier.Private, "AdminProperties")); tuple.Value = String.Join(";", adminProperties); this.Section.Tuples.Add(tuple); @@ -53,8 +52,7 @@ namespace WixToolset.Core.WindowsInstaller.Bind if (0 < secureProperties.Count) { - var tuple = new PropertyTuple(null, new Identifier("SecureCustomProperties", AccessModifier.Private)); - tuple.Property = "SecureCustomProperties"; + var tuple = new PropertyTuple(null, new Identifier(AccessModifier.Private, "SecureCustomProperties")); tuple.Value = String.Join(";", secureProperties); this.Section.Tuples.Add(tuple); @@ -62,8 +60,7 @@ namespace WixToolset.Core.WindowsInstaller.Bind if (0 < hiddenProperties.Count) { - var tuple = new PropertyTuple(null, new Identifier("MsiHiddenProperties", AccessModifier.Private)); - tuple.Property = "MsiHiddenProperties"; + var tuple = new PropertyTuple(null, new Identifier(AccessModifier.Private, "MsiHiddenProperties")); tuple.Value = String.Join(";", hiddenProperties); this.Section.Tuples.Add(tuple); -- cgit v1.2.3-55-g6feb