aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Tuples/IniLocatorTuple.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Data/Tuples/IniLocatorTuple.cs')
-rw-r--r--src/WixToolset.Data/Tuples/IniLocatorTuple.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/WixToolset.Data/Tuples/IniLocatorTuple.cs b/src/WixToolset.Data/Tuples/IniLocatorTuple.cs
index 84097f9c..b95bcdf2 100644
--- a/src/WixToolset.Data/Tuples/IniLocatorTuple.cs
+++ b/src/WixToolset.Data/Tuples/IniLocatorTuple.cs
@@ -10,7 +10,7 @@ namespace WixToolset.Data
10 TupleDefinitionType.IniLocator, 10 TupleDefinitionType.IniLocator,
11 new[] 11 new[]
12 { 12 {
13 new IntermediateFieldDefinition(nameof(IniLocatorTupleFields.Signature_), IntermediateFieldType.String), 13 new IntermediateFieldDefinition(nameof(IniLocatorTupleFields.SignatureRef), IntermediateFieldType.String),
14 new IntermediateFieldDefinition(nameof(IniLocatorTupleFields.FileName), IntermediateFieldType.String), 14 new IntermediateFieldDefinition(nameof(IniLocatorTupleFields.FileName), IntermediateFieldType.String),
15 new IntermediateFieldDefinition(nameof(IniLocatorTupleFields.Section), IntermediateFieldType.String), 15 new IntermediateFieldDefinition(nameof(IniLocatorTupleFields.Section), IntermediateFieldType.String),
16 new IntermediateFieldDefinition(nameof(IniLocatorTupleFields.Key), IntermediateFieldType.String), 16 new IntermediateFieldDefinition(nameof(IniLocatorTupleFields.Key), IntermediateFieldType.String),
@@ -25,7 +25,7 @@ namespace WixToolset.Data.Tuples
25{ 25{
26 public enum IniLocatorTupleFields 26 public enum IniLocatorTupleFields
27 { 27 {
28 Signature_, 28 SignatureRef,
29 FileName, 29 FileName,
30 Section, 30 Section,
31 Key, 31 Key,
@@ -45,10 +45,10 @@ namespace WixToolset.Data.Tuples
45 45
46 public IntermediateField this[IniLocatorTupleFields index] => this.Fields[(int)index]; 46 public IntermediateField this[IniLocatorTupleFields index] => this.Fields[(int)index];
47 47
48 public string Signature_ 48 public string SignatureRef
49 { 49 {
50 get => (string)this.Fields[(int)IniLocatorTupleFields.Signature_]; 50 get => (string)this.Fields[(int)IniLocatorTupleFields.SignatureRef];
51 set => this.Set((int)IniLocatorTupleFields.Signature_, value); 51 set => this.Set((int)IniLocatorTupleFields.SignatureRef, value);
52 } 52 }
53 53
54 public string FileName 54 public string FileName