diff options
| author | Rob Mensching <rob@firegiant.com> | 2019-10-07 13:20:47 -0700 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2019-10-07 21:41:53 -0700 |
| commit | 3eb21f9eba6e3fd9ab7902cdfe6cb4971244f6b6 (patch) | |
| tree | 2a876f13d1751c35620d5f406c0489f10351819e /src/WixToolset.Data/Tuples/AppSearchTuple.cs | |
| parent | 62d562c060d94c587e684834d25345498d638430 (diff) | |
| download | wix-3eb21f9eba6e3fd9ab7902cdfe6cb4971244f6b6.tar.gz wix-3eb21f9eba6e3fd9ab7902cdfe6cb4971244f6b6.tar.bz2 wix-3eb21f9eba6e3fd9ab7902cdfe6cb4971244f6b6.zip | |
Fix AppSearch related tuples
Diffstat (limited to 'src/WixToolset.Data/Tuples/AppSearchTuple.cs')
| -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 |
