diff options
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 4c03f847..5c972fa0 100644 --- a/src/WixToolset.Data/Tuples/AppSearchTuple.cs +++ b/src/WixToolset.Data/Tuples/AppSearchTuple.cs | |||
@@ -11,7 +11,7 @@ namespace WixToolset.Data | |||
11 | new[] | 11 | new[] |
12 | { | 12 | { |
13 | new IntermediateFieldDefinition(nameof(AppSearchTupleFields.Property), IntermediateFieldType.String), | 13 | new IntermediateFieldDefinition(nameof(AppSearchTupleFields.Property), IntermediateFieldType.String), |
14 | new IntermediateFieldDefinition(nameof(AppSearchTupleFields.Signature_), IntermediateFieldType.String), | 14 | new IntermediateFieldDefinition(nameof(AppSearchTupleFields.SignatureRef), IntermediateFieldType.String), |
15 | }, | 15 | }, |
16 | typeof(AppSearchTuple)); | 16 | typeof(AppSearchTuple)); |
17 | } | 17 | } |
@@ -22,7 +22,7 @@ namespace WixToolset.Data.Tuples | |||
22 | public enum AppSearchTupleFields | 22 | public enum AppSearchTupleFields |
23 | { | 23 | { |
24 | Property, | 24 | Property, |
25 | Signature_, | 25 | SignatureRef, |
26 | } | 26 | } |
27 | 27 | ||
28 | public class AppSearchTuple : IntermediateTuple | 28 | public class AppSearchTuple : IntermediateTuple |
@@ -43,10 +43,10 @@ namespace WixToolset.Data.Tuples | |||
43 | set => this.Set((int)AppSearchTupleFields.Property, value); | 43 | set => this.Set((int)AppSearchTupleFields.Property, value); |
44 | } | 44 | } |
45 | 45 | ||
46 | public string Signature_ | 46 | public string SignatureRef |
47 | { | 47 | { |
48 | get => (string)this.Fields[(int)AppSearchTupleFields.Signature_]; | 48 | get => (string)this.Fields[(int)AppSearchTupleFields.SignatureRef]; |
49 | set => this.Set((int)AppSearchTupleFields.Signature_, value); | 49 | set => this.Set((int)AppSearchTupleFields.SignatureRef, value); |
50 | } | 50 | } |
51 | } | 51 | } |
52 | } \ No newline at end of file | 52 | } \ No newline at end of file |