diff options
Diffstat (limited to 'src/WixToolset.Data/Tuples/ConditionTuple.cs')
-rw-r--r-- | src/WixToolset.Data/Tuples/ConditionTuple.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/WixToolset.Data/Tuples/ConditionTuple.cs b/src/WixToolset.Data/Tuples/ConditionTuple.cs index f62174f6..9b2284a4 100644 --- a/src/WixToolset.Data/Tuples/ConditionTuple.cs +++ b/src/WixToolset.Data/Tuples/ConditionTuple.cs | |||
@@ -10,7 +10,7 @@ namespace WixToolset.Data | |||
10 | TupleDefinitionType.Condition, | 10 | TupleDefinitionType.Condition, |
11 | new[] | 11 | new[] |
12 | { | 12 | { |
13 | new IntermediateFieldDefinition(nameof(ConditionTupleFields.Feature_), IntermediateFieldType.String), | 13 | new IntermediateFieldDefinition(nameof(ConditionTupleFields.FeatureRef), IntermediateFieldType.String), |
14 | new IntermediateFieldDefinition(nameof(ConditionTupleFields.Level), IntermediateFieldType.Number), | 14 | new IntermediateFieldDefinition(nameof(ConditionTupleFields.Level), IntermediateFieldType.Number), |
15 | new IntermediateFieldDefinition(nameof(ConditionTupleFields.Condition), IntermediateFieldType.String), | 15 | new IntermediateFieldDefinition(nameof(ConditionTupleFields.Condition), IntermediateFieldType.String), |
16 | }, | 16 | }, |
@@ -22,7 +22,7 @@ namespace WixToolset.Data.Tuples | |||
22 | { | 22 | { |
23 | public enum ConditionTupleFields | 23 | public enum ConditionTupleFields |
24 | { | 24 | { |
25 | Feature_, | 25 | FeatureRef, |
26 | Level, | 26 | Level, |
27 | Condition, | 27 | Condition, |
28 | } | 28 | } |
@@ -39,10 +39,10 @@ namespace WixToolset.Data.Tuples | |||
39 | 39 | ||
40 | public IntermediateField this[ConditionTupleFields index] => this.Fields[(int)index]; | 40 | public IntermediateField this[ConditionTupleFields index] => this.Fields[(int)index]; |
41 | 41 | ||
42 | public string Feature_ | 42 | public string FeatureRef |
43 | { | 43 | { |
44 | get => (string)this.Fields[(int)ConditionTupleFields.Feature_]; | 44 | get => (string)this.Fields[(int)ConditionTupleFields.FeatureRef]; |
45 | set => this.Set((int)ConditionTupleFields.Feature_, value); | 45 | set => this.Set((int)ConditionTupleFields.FeatureRef, value); |
46 | } | 46 | } |
47 | 47 | ||
48 | public int Level | 48 | public int Level |