diff options
Diffstat (limited to 'src/wixext/Tuples/IIsWebLogTuple.cs')
-rw-r--r-- | src/wixext/Tuples/IIsWebLogTuple.cs | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/wixext/Tuples/IIsWebLogTuple.cs b/src/wixext/Tuples/IIsWebLogTuple.cs index 1dfe0862..ec912ac5 100644 --- a/src/wixext/Tuples/IIsWebLogTuple.cs +++ b/src/wixext/Tuples/IIsWebLogTuple.cs | |||
@@ -11,7 +11,6 @@ namespace WixToolset.Iis | |||
11 | IisTupleDefinitionType.IIsWebLog.ToString(), | 11 | IisTupleDefinitionType.IIsWebLog.ToString(), |
12 | new[] | 12 | new[] |
13 | { | 13 | { |
14 | new IntermediateFieldDefinition(nameof(IIsWebLogTupleFields.Log), IntermediateFieldType.String), | ||
15 | new IntermediateFieldDefinition(nameof(IIsWebLogTupleFields.Format), IntermediateFieldType.String), | 14 | new IntermediateFieldDefinition(nameof(IIsWebLogTupleFields.Format), IntermediateFieldType.String), |
16 | }, | 15 | }, |
17 | typeof(IIsWebLogTuple)); | 16 | typeof(IIsWebLogTuple)); |
@@ -24,7 +23,6 @@ namespace WixToolset.Iis.Tuples | |||
24 | 23 | ||
25 | public enum IIsWebLogTupleFields | 24 | public enum IIsWebLogTupleFields |
26 | { | 25 | { |
27 | Log, | ||
28 | Format, | 26 | Format, |
29 | } | 27 | } |
30 | 28 | ||
@@ -40,12 +38,6 @@ namespace WixToolset.Iis.Tuples | |||
40 | 38 | ||
41 | public IntermediateField this[IIsWebLogTupleFields index] => this.Fields[(int)index]; | 39 | public IntermediateField this[IIsWebLogTupleFields index] => this.Fields[(int)index]; |
42 | 40 | ||
43 | public string Log | ||
44 | { | ||
45 | get => this.Fields[(int)IIsWebLogTupleFields.Log].AsString(); | ||
46 | set => this.Set((int)IIsWebLogTupleFields.Log, value); | ||
47 | } | ||
48 | |||
49 | public string Format | 41 | public string Format |
50 | { | 42 | { |
51 | get => this.Fields[(int)IIsWebLogTupleFields.Format].AsString(); | 43 | get => this.Fields[(int)IIsWebLogTupleFields.Format].AsString(); |