diff options
| author | Rob Mensching <rob@firegiant.com> | 2020-06-24 14:41:52 -0700 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2020-06-25 12:48:19 -0700 |
| commit | d87492c97b5ac6eec1c86c4cc8b2b45e9f8ad165 (patch) | |
| tree | c6a100e5810ba96aba5b2bb8029d1b902d30c8c6 /src/WixToolset.Data/Symbols/ModuleIgnoreTableSymbol.cs | |
| parent | 9787570331b511bab73ac8f4f38a3b8cfa053ca5 (diff) | |
| download | wix-d87492c97b5ac6eec1c86c4cc8b2b45e9f8ad165.tar.gz wix-d87492c97b5ac6eec1c86c4cc8b2b45e9f8ad165.tar.bz2 wix-d87492c97b5ac6eec1c86c4cc8b2b45e9f8ad165.zip | |
The Great Tuple to Symbol File Rename (tm)
Diffstat (limited to 'src/WixToolset.Data/Symbols/ModuleIgnoreTableSymbol.cs')
| -rw-r--r-- | src/WixToolset.Data/Symbols/ModuleIgnoreTableSymbol.cs | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/src/WixToolset.Data/Symbols/ModuleIgnoreTableSymbol.cs b/src/WixToolset.Data/Symbols/ModuleIgnoreTableSymbol.cs new file mode 100644 index 00000000..07302df8 --- /dev/null +++ b/src/WixToolset.Data/Symbols/ModuleIgnoreTableSymbol.cs | |||
| @@ -0,0 +1,36 @@ | |||
| 1 | // Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. | ||
| 2 | |||
| 3 | namespace WixToolset.Data | ||
| 4 | { | ||
| 5 | using WixToolset.Data.Symbols; | ||
| 6 | |||
| 7 | public static partial class SymbolDefinitions | ||
| 8 | { | ||
| 9 | public static readonly IntermediateSymbolDefinition ModuleIgnoreTable = new IntermediateSymbolDefinition( | ||
| 10 | SymbolDefinitionType.ModuleIgnoreTable, | ||
| 11 | new IntermediateFieldDefinition[] | ||
| 12 | { | ||
| 13 | }, | ||
| 14 | typeof(ModuleIgnoreTableSymbol)); | ||
| 15 | } | ||
| 16 | } | ||
| 17 | |||
| 18 | namespace WixToolset.Data.Symbols | ||
| 19 | { | ||
| 20 | public enum ModuleIgnoreTableSymbolFields | ||
| 21 | { | ||
| 22 | } | ||
| 23 | |||
| 24 | public class ModuleIgnoreTableSymbol : IntermediateSymbol | ||
| 25 | { | ||
| 26 | public ModuleIgnoreTableSymbol() : base(SymbolDefinitions.ModuleIgnoreTable, null, null) | ||
| 27 | { | ||
| 28 | } | ||
| 29 | |||
| 30 | public ModuleIgnoreTableSymbol(SourceLineNumber sourceLineNumber, Identifier id = null) : base(SymbolDefinitions.ModuleIgnoreTable, sourceLineNumber, id) | ||
| 31 | { | ||
| 32 | } | ||
| 33 | |||
| 34 | public IntermediateField this[ModuleIgnoreTableSymbolFields index] => this.Fields[(int)index]; | ||
| 35 | } | ||
| 36 | } \ No newline at end of file | ||
