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/CompLocatorTuple.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/CompLocatorTuple.cs')
| -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]; |
