diff options
Diffstat (limited to '')
-rw-r--r-- | src/WixToolset.Data/Tuples/AppSearchTuple.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/WixToolset.Data/Tuples/AppSearchTuple.cs b/src/WixToolset.Data/Tuples/AppSearchTuple.cs index 5c972fa0..098b4946 100644 --- a/src/WixToolset.Data/Tuples/AppSearchTuple.cs +++ b/src/WixToolset.Data/Tuples/AppSearchTuple.cs | |||
@@ -10,7 +10,7 @@ namespace WixToolset.Data | |||
10 | TupleDefinitionType.AppSearch, | 10 | TupleDefinitionType.AppSearch, |
11 | new[] | 11 | new[] |
12 | { | 12 | { |
13 | new IntermediateFieldDefinition(nameof(AppSearchTupleFields.Property), IntermediateFieldType.String), | 13 | new IntermediateFieldDefinition(nameof(AppSearchTupleFields.PropertyRef), IntermediateFieldType.String), |
14 | new IntermediateFieldDefinition(nameof(AppSearchTupleFields.SignatureRef), IntermediateFieldType.String), | 14 | new IntermediateFieldDefinition(nameof(AppSearchTupleFields.SignatureRef), IntermediateFieldType.String), |
15 | }, | 15 | }, |
16 | typeof(AppSearchTuple)); | 16 | typeof(AppSearchTuple)); |
@@ -21,7 +21,7 @@ namespace WixToolset.Data.Tuples | |||
21 | { | 21 | { |
22 | public enum AppSearchTupleFields | 22 | public enum AppSearchTupleFields |
23 | { | 23 | { |
24 | Property, | 24 | PropertyRef, |
25 | SignatureRef, | 25 | SignatureRef, |
26 | } | 26 | } |
27 | 27 | ||
@@ -37,10 +37,10 @@ namespace WixToolset.Data.Tuples | |||
37 | 37 | ||
38 | public IntermediateField this[AppSearchTupleFields index] => this.Fields[(int)index]; | 38 | public IntermediateField this[AppSearchTupleFields index] => this.Fields[(int)index]; |
39 | 39 | ||
40 | public string Property | 40 | public string PropertyRef |
41 | { | 41 | { |
42 | get => (string)this.Fields[(int)AppSearchTupleFields.Property]; | 42 | get => (string)this.Fields[(int)AppSearchTupleFields.PropertyRef]; |
43 | set => this.Set((int)AppSearchTupleFields.Property, value); | 43 | set => this.Set((int)AppSearchTupleFields.PropertyRef, value); |
44 | } | 44 | } |
45 | 45 | ||
46 | public string SignatureRef | 46 | public string SignatureRef |