aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Tuples/EnvironmentTuple.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Data/Tuples/EnvironmentTuple.cs')
-rw-r--r--src/WixToolset.Data/Tuples/EnvironmentTuple.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/WixToolset.Data/Tuples/EnvironmentTuple.cs b/src/WixToolset.Data/Tuples/EnvironmentTuple.cs
index 56b9f7d2..a6a10ac5 100644
--- a/src/WixToolset.Data/Tuples/EnvironmentTuple.cs
+++ b/src/WixToolset.Data/Tuples/EnvironmentTuple.cs
@@ -17,7 +17,7 @@ namespace WixToolset.Data
17 new IntermediateFieldDefinition(nameof(EnvironmentTupleFields.Part), IntermediateFieldType.Number), 17 new IntermediateFieldDefinition(nameof(EnvironmentTupleFields.Part), IntermediateFieldType.Number),
18 new IntermediateFieldDefinition(nameof(EnvironmentTupleFields.Permanent), IntermediateFieldType.Bool), 18 new IntermediateFieldDefinition(nameof(EnvironmentTupleFields.Permanent), IntermediateFieldType.Bool),
19 new IntermediateFieldDefinition(nameof(EnvironmentTupleFields.System), IntermediateFieldType.Bool), 19 new IntermediateFieldDefinition(nameof(EnvironmentTupleFields.System), IntermediateFieldType.Bool),
20 new IntermediateFieldDefinition(nameof(EnvironmentTupleFields.Component_), IntermediateFieldType.String), 20 new IntermediateFieldDefinition(nameof(EnvironmentTupleFields.ComponentRef), IntermediateFieldType.String),
21 }, 21 },
22 typeof(EnvironmentTuple)); 22 typeof(EnvironmentTuple));
23 } 23 }
@@ -34,7 +34,7 @@ namespace WixToolset.Data.Tuples
34 Part, 34 Part,
35 Permanent, 35 Permanent,
36 System, 36 System,
37 Component_, 37 ComponentRef,
38 } 38 }
39 39
40 public enum EnvironmentActionType 40 public enum EnvironmentActionType
@@ -105,10 +105,10 @@ namespace WixToolset.Data.Tuples
105 set => this.Set((int)EnvironmentTupleFields.System, value); 105 set => this.Set((int)EnvironmentTupleFields.System, value);
106 } 106 }
107 107
108 public string Component_ 108 public string ComponentRef
109 { 109 {
110 get => (string)this.Fields[(int)EnvironmentTupleFields.Component_]; 110 get => (string)this.Fields[(int)EnvironmentTupleFields.ComponentRef];
111 set => this.Set((int)EnvironmentTupleFields.Component_, value); 111 set => this.Set((int)EnvironmentTupleFields.ComponentRef, value);
112 } 112 }
113 } 113 }
114} \ No newline at end of file 114} \ No newline at end of file