aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Tuples/CCPSearchTuple.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Data/Tuples/CCPSearchTuple.cs')
-rw-r--r--src/WixToolset.Data/Tuples/CCPSearchTuple.cs12
1 files changed, 1 insertions, 11 deletions
diff --git a/src/WixToolset.Data/Tuples/CCPSearchTuple.cs b/src/WixToolset.Data/Tuples/CCPSearchTuple.cs
index 3d849128..bdc64907 100644
--- a/src/WixToolset.Data/Tuples/CCPSearchTuple.cs
+++ b/src/WixToolset.Data/Tuples/CCPSearchTuple.cs
@@ -8,10 +8,7 @@ namespace WixToolset.Data
8 { 8 {
9 public static readonly IntermediateTupleDefinition CCPSearch = new IntermediateTupleDefinition( 9 public static readonly IntermediateTupleDefinition CCPSearch = new IntermediateTupleDefinition(
10 TupleDefinitionType.CCPSearch, 10 TupleDefinitionType.CCPSearch,
11 new[] 11 new IntermediateFieldDefinition[0],
12 {
13 new IntermediateFieldDefinition(nameof(CCPSearchTupleFields.Signature_), IntermediateFieldType.String),
14 },
15 typeof(CCPSearchTuple)); 12 typeof(CCPSearchTuple));
16 } 13 }
17} 14}
@@ -20,7 +17,6 @@ namespace WixToolset.Data.Tuples
20{ 17{
21 public enum CCPSearchTupleFields 18 public enum CCPSearchTupleFields
22 { 19 {
23 Signature_,
24 } 20 }
25 21
26 public class CCPSearchTuple : IntermediateTuple 22 public class CCPSearchTuple : IntermediateTuple
@@ -34,11 +30,5 @@ namespace WixToolset.Data.Tuples
34 } 30 }
35 31
36 public IntermediateField this[CCPSearchTupleFields index] => this.Fields[(int)index]; 32 public IntermediateField this[CCPSearchTupleFields index] => this.Fields[(int)index];
37
38 public string Signature_
39 {
40 get => (string)this.Fields[(int)CCPSearchTupleFields.Signature_];
41 set => this.Set((int)CCPSearchTupleFields.Signature_, value);
42 }
43 } 33 }
44} \ No newline at end of file 34} \ No newline at end of file