diff options
Diffstat (limited to 'src/wixext/Tuples/IIsWebServiceExtensionTuple.cs')
-rw-r--r-- | src/wixext/Tuples/IIsWebServiceExtensionTuple.cs | 18 |
1 files changed, 5 insertions, 13 deletions
diff --git a/src/wixext/Tuples/IIsWebServiceExtensionTuple.cs b/src/wixext/Tuples/IIsWebServiceExtensionTuple.cs index a6fec797..82d9c82a 100644 --- a/src/wixext/Tuples/IIsWebServiceExtensionTuple.cs +++ b/src/wixext/Tuples/IIsWebServiceExtensionTuple.cs | |||
@@ -11,8 +11,7 @@ namespace WixToolset.Iis | |||
11 | IisTupleDefinitionType.IIsWebServiceExtension.ToString(), | 11 | IisTupleDefinitionType.IIsWebServiceExtension.ToString(), |
12 | new[] | 12 | new[] |
13 | { | 13 | { |
14 | new IntermediateFieldDefinition(nameof(IIsWebServiceExtensionTupleFields.WebServiceExtension), IntermediateFieldType.String), | 14 | new IntermediateFieldDefinition(nameof(IIsWebServiceExtensionTupleFields.ComponentRef), IntermediateFieldType.String), |
15 | new IntermediateFieldDefinition(nameof(IIsWebServiceExtensionTupleFields.Component_), IntermediateFieldType.String), | ||
16 | new IntermediateFieldDefinition(nameof(IIsWebServiceExtensionTupleFields.File), IntermediateFieldType.String), | 15 | new IntermediateFieldDefinition(nameof(IIsWebServiceExtensionTupleFields.File), IntermediateFieldType.String), |
17 | new IntermediateFieldDefinition(nameof(IIsWebServiceExtensionTupleFields.Description), IntermediateFieldType.String), | 16 | new IntermediateFieldDefinition(nameof(IIsWebServiceExtensionTupleFields.Description), IntermediateFieldType.String), |
18 | new IntermediateFieldDefinition(nameof(IIsWebServiceExtensionTupleFields.Group), IntermediateFieldType.String), | 17 | new IntermediateFieldDefinition(nameof(IIsWebServiceExtensionTupleFields.Group), IntermediateFieldType.String), |
@@ -28,8 +27,7 @@ namespace WixToolset.Iis.Tuples | |||
28 | 27 | ||
29 | public enum IIsWebServiceExtensionTupleFields | 28 | public enum IIsWebServiceExtensionTupleFields |
30 | { | 29 | { |
31 | WebServiceExtension, | 30 | ComponentRef, |
32 | Component_, | ||
33 | File, | 31 | File, |
34 | Description, | 32 | Description, |
35 | Group, | 33 | Group, |
@@ -48,16 +46,10 @@ namespace WixToolset.Iis.Tuples | |||
48 | 46 | ||
49 | public IntermediateField this[IIsWebServiceExtensionTupleFields index] => this.Fields[(int)index]; | 47 | public IntermediateField this[IIsWebServiceExtensionTupleFields index] => this.Fields[(int)index]; |
50 | 48 | ||
51 | public string WebServiceExtension | 49 | public string ComponentRef |
52 | { | 50 | { |
53 | get => this.Fields[(int)IIsWebServiceExtensionTupleFields.WebServiceExtension].AsString(); | 51 | get => this.Fields[(int)IIsWebServiceExtensionTupleFields.ComponentRef].AsString(); |
54 | set => this.Set((int)IIsWebServiceExtensionTupleFields.WebServiceExtension, value); | 52 | set => this.Set((int)IIsWebServiceExtensionTupleFields.ComponentRef, value); |
55 | } | ||
56 | |||
57 | public string Component_ | ||
58 | { | ||
59 | get => this.Fields[(int)IIsWebServiceExtensionTupleFields.Component_].AsString(); | ||
60 | set => this.Set((int)IIsWebServiceExtensionTupleFields.Component_, value); | ||
61 | } | 53 | } |
62 | 54 | ||
63 | public string File | 55 | public string File |