aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core.WindowsInstaller/Bind/CreateSpecialPropertiesCommand.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Core.WindowsInstaller/Bind/CreateSpecialPropertiesCommand.cs')
-rw-r--r--src/WixToolset.Core.WindowsInstaller/Bind/CreateSpecialPropertiesCommand.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/WixToolset.Core.WindowsInstaller/Bind/CreateSpecialPropertiesCommand.cs b/src/WixToolset.Core.WindowsInstaller/Bind/CreateSpecialPropertiesCommand.cs
index b5e5069a..e6c089a1 100644
--- a/src/WixToolset.Core.WindowsInstaller/Bind/CreateSpecialPropertiesCommand.cs
+++ b/src/WixToolset.Core.WindowsInstaller/Bind/CreateSpecialPropertiesCommand.cs
@@ -28,17 +28,17 @@ namespace WixToolset.Core.WindowsInstaller.Bind
28 { 28 {
29 if (wixPropertyRow.Admin) 29 if (wixPropertyRow.Admin)
30 { 30 {
31 adminProperties.Add(wixPropertyRow.Property_); 31 adminProperties.Add(wixPropertyRow.PropertyRef);
32 } 32 }
33 33
34 if (wixPropertyRow.Hidden) 34 if (wixPropertyRow.Hidden)
35 { 35 {
36 hiddenProperties.Add(wixPropertyRow.Property_); 36 hiddenProperties.Add(wixPropertyRow.PropertyRef);
37 } 37 }
38 38
39 if (wixPropertyRow.Secure) 39 if (wixPropertyRow.Secure)
40 { 40 {
41 secureProperties.Add(wixPropertyRow.Property_); 41 secureProperties.Add(wixPropertyRow.PropertyRef);
42 } 42 }
43 } 43 }
44 44