diff options
Diffstat (limited to '')
-rw-r--r-- | src/WixToolset.Data/Tuples/CompLocatorTuple.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/WixToolset.Data/Tuples/CompLocatorTuple.cs b/src/WixToolset.Data/Tuples/CompLocatorTuple.cs index 4a92d132..746d3073 100644 --- a/src/WixToolset.Data/Tuples/CompLocatorTuple.cs +++ b/src/WixToolset.Data/Tuples/CompLocatorTuple.cs | |||
@@ -10,6 +10,7 @@ namespace WixToolset.Data | |||
10 | TupleDefinitionType.CompLocator, | 10 | TupleDefinitionType.CompLocator, |
11 | new[] | 11 | new[] |
12 | { | 12 | { |
13 | new IntermediateFieldDefinition(nameof(CompLocatorTupleFields.SignatureRef), IntermediateFieldType.String), | ||
13 | new IntermediateFieldDefinition(nameof(CompLocatorTupleFields.ComponentId), IntermediateFieldType.String), | 14 | new IntermediateFieldDefinition(nameof(CompLocatorTupleFields.ComponentId), IntermediateFieldType.String), |
14 | new IntermediateFieldDefinition(nameof(CompLocatorTupleFields.Type), IntermediateFieldType.Number), | 15 | new IntermediateFieldDefinition(nameof(CompLocatorTupleFields.Type), IntermediateFieldType.Number), |
15 | }, | 16 | }, |
@@ -21,6 +22,7 @@ namespace WixToolset.Data.Tuples | |||
21 | { | 22 | { |
22 | public enum CompLocatorTupleFields | 23 | public enum CompLocatorTupleFields |
23 | { | 24 | { |
25 | SignatureRef, | ||
24 | ComponentId, | 26 | ComponentId, |
25 | Type, | 27 | Type, |
26 | } | 28 | } |
@@ -37,6 +39,12 @@ namespace WixToolset.Data.Tuples | |||
37 | 39 | ||
38 | public IntermediateField this[CompLocatorTupleFields index] => this.Fields[(int)index]; | 40 | public IntermediateField this[CompLocatorTupleFields index] => this.Fields[(int)index]; |
39 | 41 | ||
42 | public string SignatureRef | ||
43 | { | ||
44 | get => (string)this.Fields[(int)IniLocatorTupleFields.SignatureRef]; | ||
45 | set => this.Set((int)IniLocatorTupleFields.SignatureRef, value); | ||
46 | } | ||
47 | |||
40 | public string ComponentId | 48 | public string ComponentId |
41 | { | 49 | { |
42 | get => (string)this.Fields[(int)CompLocatorTupleFields.ComponentId]; | 50 | get => (string)this.Fields[(int)CompLocatorTupleFields.ComponentId]; |