From 3859a8cd7d6001f7b49c22065e33242ddb486fbb Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Wed, 22 May 2019 14:48:20 -0700 Subject: Adopt "Ref" as reference convention over "_" --- .../Bind/CreateSpecialPropertiesCommand.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 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 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 { if (wixPropertyRow.Admin) { - adminProperties.Add(wixPropertyRow.Property_); + adminProperties.Add(wixPropertyRow.PropertyRef); } if (wixPropertyRow.Hidden) { - hiddenProperties.Add(wixPropertyRow.Property_); + hiddenProperties.Add(wixPropertyRow.PropertyRef); } if (wixPropertyRow.Secure) { - secureProperties.Add(wixPropertyRow.Property_); + secureProperties.Add(wixPropertyRow.PropertyRef); } } -- cgit v1.2.3-55-g6feb