diff options
| author | Rob Mensching <rob@firegiant.com> | 2019-05-22 00:58:13 -0700 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2019-05-23 16:02:37 -0700 |
| commit | d0462be8000f18aa7dc0791d02142f000bb19fbf (patch) | |
| tree | 072aabc2bd9b8f171e17654473f85c44a8a42a66 /src/WixToolset.Core.WindowsInstaller/Bind/CreateSpecialPropertiesCommand.cs | |
| parent | 1ed894bc0f39397ec7f7f6344370fc2123420c43 (diff) | |
| download | wix-d0462be8000f18aa7dc0791d02142f000bb19fbf.tar.gz wix-d0462be8000f18aa7dc0791d02142f000bb19fbf.tar.bz2 wix-d0462be8000f18aa7dc0791d02142f000bb19fbf.zip | |
Integrate latest changes to tuple definitions
Diffstat (limited to 'src/WixToolset.Core.WindowsInstaller/Bind/CreateSpecialPropertiesCommand.cs')
| -rw-r--r-- | src/WixToolset.Core.WindowsInstaller/Bind/CreateSpecialPropertiesCommand.cs | 9 |
1 files changed, 3 insertions, 6 deletions
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 | |||
| 44 | 44 | ||
| 45 | if (0 < adminProperties.Count) | 45 | if (0 < adminProperties.Count) |
| 46 | { | 46 | { |
| 47 | var tuple = new PropertyTuple(null, new Identifier("AdminProperties", AccessModifier.Private)); | 47 | var tuple = new PropertyTuple(null, new Identifier(AccessModifier.Private, "AdminProperties")); |
| 48 | tuple.Property = "AdminProperties"; | ||
| 49 | tuple.Value = String.Join(";", adminProperties); | 48 | tuple.Value = String.Join(";", adminProperties); |
| 50 | 49 | ||
| 51 | this.Section.Tuples.Add(tuple); | 50 | this.Section.Tuples.Add(tuple); |
| @@ -53,8 +52,7 @@ namespace WixToolset.Core.WindowsInstaller.Bind | |||
| 53 | 52 | ||
| 54 | if (0 < secureProperties.Count) | 53 | if (0 < secureProperties.Count) |
| 55 | { | 54 | { |
| 56 | var tuple = new PropertyTuple(null, new Identifier("SecureCustomProperties", AccessModifier.Private)); | 55 | var tuple = new PropertyTuple(null, new Identifier(AccessModifier.Private, "SecureCustomProperties")); |
| 57 | tuple.Property = "SecureCustomProperties"; | ||
| 58 | tuple.Value = String.Join(";", secureProperties); | 56 | tuple.Value = String.Join(";", secureProperties); |
| 59 | 57 | ||
| 60 | this.Section.Tuples.Add(tuple); | 58 | this.Section.Tuples.Add(tuple); |
| @@ -62,8 +60,7 @@ namespace WixToolset.Core.WindowsInstaller.Bind | |||
| 62 | 60 | ||
| 63 | if (0 < hiddenProperties.Count) | 61 | if (0 < hiddenProperties.Count) |
| 64 | { | 62 | { |
| 65 | var tuple = new PropertyTuple(null, new Identifier("MsiHiddenProperties", AccessModifier.Private)); | 63 | var tuple = new PropertyTuple(null, new Identifier(AccessModifier.Private, "MsiHiddenProperties")); |
| 66 | tuple.Property = "MsiHiddenProperties"; | ||
| 67 | tuple.Value = String.Join(";", hiddenProperties); | 64 | tuple.Value = String.Join(";", hiddenProperties); |
| 68 | 65 | ||
| 69 | this.Section.Tuples.Add(tuple); | 66 | this.Section.Tuples.Add(tuple); |
