diff options
Diffstat (limited to 'src/WixToolset.Data/Tuples/ModuleIgnoreTableTuple.cs')
| -rw-r--r-- | src/WixToolset.Data/Tuples/ModuleIgnoreTableTuple.cs | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/src/WixToolset.Data/Tuples/ModuleIgnoreTableTuple.cs b/src/WixToolset.Data/Tuples/ModuleIgnoreTableTuple.cs index d4262448..efcf0f79 100644 --- a/src/WixToolset.Data/Tuples/ModuleIgnoreTableTuple.cs +++ b/src/WixToolset.Data/Tuples/ModuleIgnoreTableTuple.cs | |||
| @@ -8,10 +8,7 @@ namespace WixToolset.Data | |||
| 8 | { | 8 | { |
| 9 | public static readonly IntermediateTupleDefinition ModuleIgnoreTable = new IntermediateTupleDefinition( | 9 | public static readonly IntermediateTupleDefinition ModuleIgnoreTable = new IntermediateTupleDefinition( |
| 10 | TupleDefinitionType.ModuleIgnoreTable, | 10 | TupleDefinitionType.ModuleIgnoreTable, |
| 11 | new[] | 11 | new IntermediateFieldDefinition[0], |
| 12 | { | ||
| 13 | new IntermediateFieldDefinition(nameof(ModuleIgnoreTableTupleFields.Table), IntermediateFieldType.String), | ||
| 14 | }, | ||
| 15 | typeof(ModuleIgnoreTableTuple)); | 12 | typeof(ModuleIgnoreTableTuple)); |
| 16 | } | 13 | } |
| 17 | } | 14 | } |
| @@ -20,7 +17,6 @@ namespace WixToolset.Data.Tuples | |||
| 20 | { | 17 | { |
| 21 | public enum ModuleIgnoreTableTupleFields | 18 | public enum ModuleIgnoreTableTupleFields |
| 22 | { | 19 | { |
| 23 | Table, | ||
| 24 | } | 20 | } |
| 25 | 21 | ||
| 26 | public class ModuleIgnoreTableTuple : IntermediateTuple | 22 | public class ModuleIgnoreTableTuple : IntermediateTuple |
| @@ -34,11 +30,5 @@ namespace WixToolset.Data.Tuples | |||
| 34 | } | 30 | } |
| 35 | 31 | ||
| 36 | public IntermediateField this[ModuleIgnoreTableTupleFields index] => this.Fields[(int)index]; | 32 | public IntermediateField this[ModuleIgnoreTableTupleFields index] => this.Fields[(int)index]; |
| 37 | 33 | } | |
| 38 | public string Table | ||
| 39 | { | ||
| 40 | get => (string)this.Fields[(int)ModuleIgnoreTableTupleFields.Table]; | ||
| 41 | set => this.Set((int)ModuleIgnoreTableTupleFields.Table, value); | ||
| 42 | } | ||
| 43 | } | ||
| 44 | } \ No newline at end of file | 34 | } \ No newline at end of file |
