diff options
Diffstat (limited to 'src/WixToolset.Data/Tuples/WixPropertyTuple.cs')
-rw-r--r-- | src/WixToolset.Data/Tuples/WixPropertyTuple.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/WixToolset.Data/Tuples/WixPropertyTuple.cs b/src/WixToolset.Data/Tuples/WixPropertyTuple.cs index 2e2c96f8..abadd947 100644 --- a/src/WixToolset.Data/Tuples/WixPropertyTuple.cs +++ b/src/WixToolset.Data/Tuples/WixPropertyTuple.cs | |||
@@ -10,7 +10,7 @@ namespace WixToolset.Data | |||
10 | TupleDefinitionType.WixProperty, | 10 | TupleDefinitionType.WixProperty, |
11 | new[] | 11 | new[] |
12 | { | 12 | { |
13 | new IntermediateFieldDefinition(nameof(WixPropertyTupleFields.Property_), IntermediateFieldType.String), | 13 | new IntermediateFieldDefinition(nameof(WixPropertyTupleFields.PropertyRef), IntermediateFieldType.String), |
14 | new IntermediateFieldDefinition(nameof(WixPropertyTupleFields.Admin), IntermediateFieldType.Bool), | 14 | new IntermediateFieldDefinition(nameof(WixPropertyTupleFields.Admin), IntermediateFieldType.Bool), |
15 | new IntermediateFieldDefinition(nameof(WixPropertyTupleFields.Hidden), IntermediateFieldType.Bool), | 15 | new IntermediateFieldDefinition(nameof(WixPropertyTupleFields.Hidden), IntermediateFieldType.Bool), |
16 | new IntermediateFieldDefinition(nameof(WixPropertyTupleFields.Secure), IntermediateFieldType.Bool), | 16 | new IntermediateFieldDefinition(nameof(WixPropertyTupleFields.Secure), IntermediateFieldType.Bool), |
@@ -23,7 +23,7 @@ namespace WixToolset.Data.Tuples | |||
23 | { | 23 | { |
24 | public enum WixPropertyTupleFields | 24 | public enum WixPropertyTupleFields |
25 | { | 25 | { |
26 | Property_, | 26 | PropertyRef, |
27 | Admin, | 27 | Admin, |
28 | Hidden, | 28 | Hidden, |
29 | Secure, | 29 | Secure, |
@@ -41,10 +41,10 @@ namespace WixToolset.Data.Tuples | |||
41 | 41 | ||
42 | public IntermediateField this[WixPropertyTupleFields index] => this.Fields[(int)index]; | 42 | public IntermediateField this[WixPropertyTupleFields index] => this.Fields[(int)index]; |
43 | 43 | ||
44 | public string Property_ | 44 | public string PropertyRef |
45 | { | 45 | { |
46 | get => (string)this.Fields[(int)WixPropertyTupleFields.Property_]; | 46 | get => (string)this.Fields[(int)WixPropertyTupleFields.PropertyRef]; |
47 | set => this.Set((int)WixPropertyTupleFields.Property_, value); | 47 | set => this.Set((int)WixPropertyTupleFields.PropertyRef, value); |
48 | } | 48 | } |
49 | 49 | ||
50 | public bool Admin | 50 | public bool Admin |