diff options
Diffstat (limited to 'src/wixext/Tuples/IIsPropertyTuple.cs')
-rw-r--r-- | src/wixext/Tuples/IIsPropertyTuple.cs | 18 |
1 files changed, 5 insertions, 13 deletions
diff --git a/src/wixext/Tuples/IIsPropertyTuple.cs b/src/wixext/Tuples/IIsPropertyTuple.cs index b02a0b4a..28e882bf 100644 --- a/src/wixext/Tuples/IIsPropertyTuple.cs +++ b/src/wixext/Tuples/IIsPropertyTuple.cs | |||
@@ -11,8 +11,7 @@ namespace WixToolset.Iis | |||
11 | IisTupleDefinitionType.IIsProperty.ToString(), | 11 | IisTupleDefinitionType.IIsProperty.ToString(), |
12 | new[] | 12 | new[] |
13 | { | 13 | { |
14 | new IntermediateFieldDefinition(nameof(IIsPropertyTupleFields.Property), IntermediateFieldType.String), | 14 | new IntermediateFieldDefinition(nameof(IIsPropertyTupleFields.ComponentRef), IntermediateFieldType.String), |
15 | new IntermediateFieldDefinition(nameof(IIsPropertyTupleFields.Component_), IntermediateFieldType.String), | ||
16 | new IntermediateFieldDefinition(nameof(IIsPropertyTupleFields.Attributes), IntermediateFieldType.Number), | 15 | new IntermediateFieldDefinition(nameof(IIsPropertyTupleFields.Attributes), IntermediateFieldType.Number), |
17 | new IntermediateFieldDefinition(nameof(IIsPropertyTupleFields.Value), IntermediateFieldType.String), | 16 | new IntermediateFieldDefinition(nameof(IIsPropertyTupleFields.Value), IntermediateFieldType.String), |
18 | }, | 17 | }, |
@@ -26,8 +25,7 @@ namespace WixToolset.Iis.Tuples | |||
26 | 25 | ||
27 | public enum IIsPropertyTupleFields | 26 | public enum IIsPropertyTupleFields |
28 | { | 27 | { |
29 | Property, | 28 | ComponentRef, |
30 | Component_, | ||
31 | Attributes, | 29 | Attributes, |
32 | Value, | 30 | Value, |
33 | } | 31 | } |
@@ -44,16 +42,10 @@ namespace WixToolset.Iis.Tuples | |||
44 | 42 | ||
45 | public IntermediateField this[IIsPropertyTupleFields index] => this.Fields[(int)index]; | 43 | public IntermediateField this[IIsPropertyTupleFields index] => this.Fields[(int)index]; |
46 | 44 | ||
47 | public string Property | 45 | public string ComponentRef |
48 | { | 46 | { |
49 | get => this.Fields[(int)IIsPropertyTupleFields.Property].AsString(); | 47 | get => this.Fields[(int)IIsPropertyTupleFields.ComponentRef].AsString(); |
50 | set => this.Set((int)IIsPropertyTupleFields.Property, value); | 48 | set => this.Set((int)IIsPropertyTupleFields.ComponentRef, value); |
51 | } | ||
52 | |||
53 | public string Component_ | ||
54 | { | ||
55 | get => this.Fields[(int)IIsPropertyTupleFields.Component_].AsString(); | ||
56 | set => this.Set((int)IIsPropertyTupleFields.Component_, value); | ||
57 | } | 49 | } |
58 | 50 | ||
59 | public int Attributes | 51 | public int Attributes |