aboutsummaryrefslogtreecommitdiff
path: root/src/wixext/Tuples/PerfmonTuple.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/wixext/Tuples/PerfmonTuple.cs')
-rw-r--r--src/wixext/Tuples/PerfmonTuple.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/wixext/Tuples/PerfmonTuple.cs b/src/wixext/Tuples/PerfmonTuple.cs
index 00ea818b..1fb6ef6b 100644
--- a/src/wixext/Tuples/PerfmonTuple.cs
+++ b/src/wixext/Tuples/PerfmonTuple.cs
@@ -11,7 +11,7 @@ namespace WixToolset.Util
11 UtilTupleDefinitionType.Perfmon.ToString(), 11 UtilTupleDefinitionType.Perfmon.ToString(),
12 new[] 12 new[]
13 { 13 {
14 new IntermediateFieldDefinition(nameof(PerfmonTupleFields.Component_), IntermediateFieldType.String), 14 new IntermediateFieldDefinition(nameof(PerfmonTupleFields.ComponentRef), IntermediateFieldType.String),
15 new IntermediateFieldDefinition(nameof(PerfmonTupleFields.File), IntermediateFieldType.String), 15 new IntermediateFieldDefinition(nameof(PerfmonTupleFields.File), IntermediateFieldType.String),
16 new IntermediateFieldDefinition(nameof(PerfmonTupleFields.Name), IntermediateFieldType.String), 16 new IntermediateFieldDefinition(nameof(PerfmonTupleFields.Name), IntermediateFieldType.String),
17 }, 17 },
@@ -25,7 +25,7 @@ namespace WixToolset.Util.Tuples
25 25
26 public enum PerfmonTupleFields 26 public enum PerfmonTupleFields
27 { 27 {
28 Component_, 28 ComponentRef,
29 File, 29 File,
30 Name, 30 Name,
31 } 31 }
@@ -42,10 +42,10 @@ namespace WixToolset.Util.Tuples
42 42
43 public IntermediateField this[PerfmonTupleFields index] => this.Fields[(int)index]; 43 public IntermediateField this[PerfmonTupleFields index] => this.Fields[(int)index];
44 44
45 public string Component_ 45 public string ComponentRef
46 { 46 {
47 get => this.Fields[(int)PerfmonTupleFields.Component_].AsString(); 47 get => this.Fields[(int)PerfmonTupleFields.ComponentRef].AsString();
48 set => this.Set((int)PerfmonTupleFields.Component_, value); 48 set => this.Set((int)PerfmonTupleFields.ComponentRef, value);
49 } 49 }
50 50
51 public string File 51 public string File