diff options
Diffstat (limited to '')
-rw-r--r-- | src/wixext/Tuples/PerformanceCategoryTuple.cs | 18 |
1 files changed, 5 insertions, 13 deletions
diff --git a/src/wixext/Tuples/PerformanceCategoryTuple.cs b/src/wixext/Tuples/PerformanceCategoryTuple.cs index ec2ba73d..16705466 100644 --- a/src/wixext/Tuples/PerformanceCategoryTuple.cs +++ b/src/wixext/Tuples/PerformanceCategoryTuple.cs | |||
@@ -11,8 +11,7 @@ namespace WixToolset.Util | |||
11 | UtilTupleDefinitionType.PerformanceCategory.ToString(), | 11 | UtilTupleDefinitionType.PerformanceCategory.ToString(), |
12 | new[] | 12 | new[] |
13 | { | 13 | { |
14 | new IntermediateFieldDefinition(nameof(PerformanceCategoryTupleFields.PerformanceCategory), IntermediateFieldType.String), | 14 | new IntermediateFieldDefinition(nameof(PerformanceCategoryTupleFields.ComponentRef), IntermediateFieldType.String), |
15 | new IntermediateFieldDefinition(nameof(PerformanceCategoryTupleFields.Component_), IntermediateFieldType.String), | ||
16 | new IntermediateFieldDefinition(nameof(PerformanceCategoryTupleFields.Name), IntermediateFieldType.String), | 15 | new IntermediateFieldDefinition(nameof(PerformanceCategoryTupleFields.Name), IntermediateFieldType.String), |
17 | new IntermediateFieldDefinition(nameof(PerformanceCategoryTupleFields.IniData), IntermediateFieldType.String), | 16 | new IntermediateFieldDefinition(nameof(PerformanceCategoryTupleFields.IniData), IntermediateFieldType.String), |
18 | new IntermediateFieldDefinition(nameof(PerformanceCategoryTupleFields.ConstantData), IntermediateFieldType.String), | 17 | new IntermediateFieldDefinition(nameof(PerformanceCategoryTupleFields.ConstantData), IntermediateFieldType.String), |
@@ -27,8 +26,7 @@ namespace WixToolset.Util.Tuples | |||
27 | 26 | ||
28 | public enum PerformanceCategoryTupleFields | 27 | public enum PerformanceCategoryTupleFields |
29 | { | 28 | { |
30 | PerformanceCategory, | 29 | ComponentRef, |
31 | Component_, | ||
32 | Name, | 30 | Name, |
33 | IniData, | 31 | IniData, |
34 | ConstantData, | 32 | ConstantData, |
@@ -46,16 +44,10 @@ namespace WixToolset.Util.Tuples | |||
46 | 44 | ||
47 | public IntermediateField this[PerformanceCategoryTupleFields index] => this.Fields[(int)index]; | 45 | public IntermediateField this[PerformanceCategoryTupleFields index] => this.Fields[(int)index]; |
48 | 46 | ||
49 | public string PerformanceCategory | 47 | public string ComponentRef |
50 | { | 48 | { |
51 | get => this.Fields[(int)PerformanceCategoryTupleFields.PerformanceCategory].AsString(); | 49 | get => this.Fields[(int)PerformanceCategoryTupleFields.ComponentRef].AsString(); |
52 | set => this.Set((int)PerformanceCategoryTupleFields.PerformanceCategory, value); | 50 | set => this.Set((int)PerformanceCategoryTupleFields.ComponentRef, value); |
53 | } | ||
54 | |||
55 | public string Component_ | ||
56 | { | ||
57 | get => this.Fields[(int)PerformanceCategoryTupleFields.Component_].AsString(); | ||
58 | set => this.Set((int)PerformanceCategoryTupleFields.Component_, value); | ||
59 | } | 51 | } |
60 | 52 | ||
61 | public string Name | 53 | public string Name |