From 3eb21f9eba6e3fd9ab7902cdfe6cb4971244f6b6 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Mon, 7 Oct 2019 13:20:47 -0700 Subject: Fix AppSearch related tuples --- src/WixToolset.Data/Tuples/CompLocatorTuple.cs | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/WixToolset.Data/Tuples/CompLocatorTuple.cs') 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 TupleDefinitionType.CompLocator, new[] { + new IntermediateFieldDefinition(nameof(CompLocatorTupleFields.SignatureRef), IntermediateFieldType.String), new IntermediateFieldDefinition(nameof(CompLocatorTupleFields.ComponentId), IntermediateFieldType.String), new IntermediateFieldDefinition(nameof(CompLocatorTupleFields.Type), IntermediateFieldType.Number), }, @@ -21,6 +22,7 @@ namespace WixToolset.Data.Tuples { public enum CompLocatorTupleFields { + SignatureRef, ComponentId, Type, } @@ -37,6 +39,12 @@ namespace WixToolset.Data.Tuples public IntermediateField this[CompLocatorTupleFields index] => this.Fields[(int)index]; + public string SignatureRef + { + get => (string)this.Fields[(int)IniLocatorTupleFields.SignatureRef]; + set => this.Set((int)IniLocatorTupleFields.SignatureRef, value); + } + public string ComponentId { get => (string)this.Fields[(int)CompLocatorTupleFields.ComponentId]; -- cgit v1.2.3-55-g6feb