diff options
Diffstat (limited to 'src/WixToolset.Data/Tuples/DrLocatorTuple.cs')
-rw-r--r-- | src/WixToolset.Data/Tuples/DrLocatorTuple.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/WixToolset.Data/Tuples/DrLocatorTuple.cs b/src/WixToolset.Data/Tuples/DrLocatorTuple.cs index 45c7b3ee..4f696b5c 100644 --- a/src/WixToolset.Data/Tuples/DrLocatorTuple.cs +++ b/src/WixToolset.Data/Tuples/DrLocatorTuple.cs | |||
@@ -10,7 +10,7 @@ namespace WixToolset.Data | |||
10 | TupleDefinitionType.DrLocator, | 10 | TupleDefinitionType.DrLocator, |
11 | new[] | 11 | new[] |
12 | { | 12 | { |
13 | new IntermediateFieldDefinition(nameof(DrLocatorTupleFields.Signature_), IntermediateFieldType.String), | 13 | new IntermediateFieldDefinition(nameof(DrLocatorTupleFields.SignatureRef), IntermediateFieldType.String), |
14 | new IntermediateFieldDefinition(nameof(DrLocatorTupleFields.Parent), IntermediateFieldType.String), | 14 | new IntermediateFieldDefinition(nameof(DrLocatorTupleFields.Parent), IntermediateFieldType.String), |
15 | new IntermediateFieldDefinition(nameof(DrLocatorTupleFields.Path), IntermediateFieldType.String), | 15 | new IntermediateFieldDefinition(nameof(DrLocatorTupleFields.Path), IntermediateFieldType.String), |
16 | new IntermediateFieldDefinition(nameof(DrLocatorTupleFields.Depth), IntermediateFieldType.Number), | 16 | new IntermediateFieldDefinition(nameof(DrLocatorTupleFields.Depth), IntermediateFieldType.Number), |
@@ -23,7 +23,7 @@ namespace WixToolset.Data.Tuples | |||
23 | { | 23 | { |
24 | public enum DrLocatorTupleFields | 24 | public enum DrLocatorTupleFields |
25 | { | 25 | { |
26 | Signature_, | 26 | SignatureRef, |
27 | Parent, | 27 | Parent, |
28 | Path, | 28 | Path, |
29 | Depth, | 29 | Depth, |
@@ -41,10 +41,10 @@ namespace WixToolset.Data.Tuples | |||
41 | 41 | ||
42 | public IntermediateField this[DrLocatorTupleFields index] => this.Fields[(int)index]; | 42 | public IntermediateField this[DrLocatorTupleFields index] => this.Fields[(int)index]; |
43 | 43 | ||
44 | public string Signature_ | 44 | public string SignatureRef |
45 | { | 45 | { |
46 | get => (string)this.Fields[(int)DrLocatorTupleFields.Signature_]; | 46 | get => (string)this.Fields[(int)DrLocatorTupleFields.SignatureRef]; |
47 | set => this.Set((int)DrLocatorTupleFields.Signature_, value); | 47 | set => this.Set((int)DrLocatorTupleFields.SignatureRef, value); |
48 | } | 48 | } |
49 | 49 | ||
50 | public string Parent | 50 | public string Parent |