diff options
| author | Sean Hall <r.sean.hall@gmail.com> | 2020-04-11 16:02:25 +1000 |
|---|---|---|
| committer | Sean Hall <r.sean.hall@gmail.com> | 2020-04-12 12:41:13 +1000 |
| commit | f49060303504d112b1580c1c90430aab4aaf1763 (patch) | |
| tree | 0aab79732de62c3dd1b34a5983ea7b60192eb627 /src/WixToolset.Data/Tuples/ModuleIgnoreTableTuple.cs | |
| parent | be42b2dd8104eec6384ab632d9869e09d29fe827 (diff) | |
| download | wix-f49060303504d112b1580c1c90430aab4aaf1763.tar.gz wix-f49060303504d112b1580c1c90430aab4aaf1763.tar.bz2 wix-f49060303504d112b1580c1c90430aab4aaf1763.zip | |
Move table definitions from Core to Data.
Sync tuple and table definitions.
Diffstat (limited to 'src/WixToolset.Data/Tuples/ModuleIgnoreTableTuple.cs')
| -rw-r--r-- | src/WixToolset.Data/Tuples/ModuleIgnoreTableTuple.cs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/WixToolset.Data/Tuples/ModuleIgnoreTableTuple.cs b/src/WixToolset.Data/Tuples/ModuleIgnoreTableTuple.cs index efcf0f79..d786b8d9 100644 --- a/src/WixToolset.Data/Tuples/ModuleIgnoreTableTuple.cs +++ b/src/WixToolset.Data/Tuples/ModuleIgnoreTableTuple.cs | |||
| @@ -8,7 +8,9 @@ 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 IntermediateFieldDefinition[0], | 11 | new IntermediateFieldDefinition[] |
| 12 | { | ||
| 13 | }, | ||
| 12 | typeof(ModuleIgnoreTableTuple)); | 14 | typeof(ModuleIgnoreTableTuple)); |
| 13 | } | 15 | } |
| 14 | } | 16 | } |
| @@ -30,5 +32,5 @@ namespace WixToolset.Data.Tuples | |||
| 30 | } | 32 | } |
| 31 | 33 | ||
| 32 | public IntermediateField this[ModuleIgnoreTableTupleFields index] => this.Fields[(int)index]; | 34 | public IntermediateField this[ModuleIgnoreTableTupleFields index] => this.Fields[(int)index]; |
| 33 | } | 35 | } |
| 34 | } \ No newline at end of file | 36 | } \ No newline at end of file |
