aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Tuples/RemoveRegistryTuple.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2019-05-22 14:45:33 -0700
committerRob Mensching <rob@firegiant.com>2019-05-23 15:43:40 -0700
commitb36433623fcac28cf620868430d49bc36fca2963 (patch)
tree08f26c45c3d80ce665eade49ee7b542bf71da81c /src/WixToolset.Data/Tuples/RemoveRegistryTuple.cs
parent109ee5a02f9cec4775697b43655674fc70f4127a (diff)
downloadwix-b36433623fcac28cf620868430d49bc36fca2963.tar.gz
wix-b36433623fcac28cf620868430d49bc36fca2963.tar.bz2
wix-b36433623fcac28cf620868430d49bc36fca2963.zip
Use "Ref" instead of "_" as the reference convention
Diffstat (limited to 'src/WixToolset.Data/Tuples/RemoveRegistryTuple.cs')
-rw-r--r--src/WixToolset.Data/Tuples/RemoveRegistryTuple.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/WixToolset.Data/Tuples/RemoveRegistryTuple.cs b/src/WixToolset.Data/Tuples/RemoveRegistryTuple.cs
index de13cdb0..42f15660 100644
--- a/src/WixToolset.Data/Tuples/RemoveRegistryTuple.cs
+++ b/src/WixToolset.Data/Tuples/RemoveRegistryTuple.cs
@@ -14,7 +14,7 @@ namespace WixToolset.Data
14 new IntermediateFieldDefinition(nameof(RemoveRegistryTupleFields.Key), IntermediateFieldType.String), 14 new IntermediateFieldDefinition(nameof(RemoveRegistryTupleFields.Key), IntermediateFieldType.String),
15 new IntermediateFieldDefinition(nameof(RemoveRegistryTupleFields.Name), IntermediateFieldType.String), 15 new IntermediateFieldDefinition(nameof(RemoveRegistryTupleFields.Name), IntermediateFieldType.String),
16 new IntermediateFieldDefinition(nameof(RemoveRegistryTupleFields.Action), IntermediateFieldType.Number), 16 new IntermediateFieldDefinition(nameof(RemoveRegistryTupleFields.Action), IntermediateFieldType.Number),
17 new IntermediateFieldDefinition(nameof(RemoveRegistryTupleFields.Component_), IntermediateFieldType.String), 17 new IntermediateFieldDefinition(nameof(RemoveRegistryTupleFields.ComponentRef), IntermediateFieldType.String),
18 }, 18 },
19 typeof(RemoveRegistryTuple)); 19 typeof(RemoveRegistryTuple));
20 } 20 }
@@ -28,7 +28,7 @@ namespace WixToolset.Data.Tuples
28 Key, 28 Key,
29 Name, 29 Name,
30 Action, 30 Action,
31 Component_, 31 ComponentRef,
32 } 32 }
33 33
34 public enum RemoveRegistryActionType 34 public enum RemoveRegistryActionType
@@ -73,10 +73,10 @@ namespace WixToolset.Data.Tuples
73 set => this.Set((int)RemoveRegistryTupleFields.Action, (int)value); 73 set => this.Set((int)RemoveRegistryTupleFields.Action, (int)value);
74 } 74 }
75 75
76 public string Component_ 76 public string ComponentRef
77 { 77 {
78 get => (string)this.Fields[(int)RemoveRegistryTupleFields.Component_]; 78 get => (string)this.Fields[(int)RemoveRegistryTupleFields.ComponentRef];
79 set => this.Set((int)RemoveRegistryTupleFields.Component_, value); 79 set => this.Set((int)RemoveRegistryTupleFields.ComponentRef, value);
80 } 80 }
81 } 81 }
82} \ No newline at end of file 82} \ No newline at end of file