diff options
Diffstat (limited to 'src/wixext/Tuples/WixDetectSHA2SupportTuple.cs')
-rw-r--r-- | src/wixext/Tuples/WixDetectSHA2SupportTuple.cs | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/wixext/Tuples/WixDetectSHA2SupportTuple.cs b/src/wixext/Tuples/WixDetectSHA2SupportTuple.cs index 38b76ff2..b518ba3b 100644 --- a/src/wixext/Tuples/WixDetectSHA2SupportTuple.cs +++ b/src/wixext/Tuples/WixDetectSHA2SupportTuple.cs | |||
@@ -3,31 +3,31 @@ | |||
3 | namespace WixToolset.Util | 3 | namespace WixToolset.Util |
4 | { | 4 | { |
5 | using WixToolset.Data; | 5 | using WixToolset.Data; |
6 | using WixToolset.Util.Tuples; | 6 | using WixToolset.Util.Symbols; |
7 | 7 | ||
8 | public static partial class UtilTupleDefinitions | 8 | public static partial class UtilSymbolDefinitions |
9 | { | 9 | { |
10 | public static readonly IntermediateTupleDefinition WixDetectSHA2Support = new IntermediateTupleDefinition( | 10 | public static readonly IntermediateSymbolDefinition WixDetectSHA2Support = new IntermediateSymbolDefinition( |
11 | UtilTupleDefinitionType.WixDetectSHA2Support.ToString(), | 11 | UtilSymbolDefinitionType.WixDetectSHA2Support.ToString(), |
12 | new IntermediateFieldDefinition[0], | 12 | new IntermediateFieldDefinition[0], |
13 | typeof(WixDetectSHA2SupportTuple)); | 13 | typeof(WixDetectSHA2SupportSymbol)); |
14 | } | 14 | } |
15 | } | 15 | } |
16 | 16 | ||
17 | namespace WixToolset.Util.Tuples | 17 | namespace WixToolset.Util.Symbols |
18 | { | 18 | { |
19 | using WixToolset.Data; | 19 | using WixToolset.Data; |
20 | 20 | ||
21 | public class WixDetectSHA2SupportTuple : IntermediateTuple | 21 | public class WixDetectSHA2SupportSymbol : IntermediateSymbol |
22 | { | 22 | { |
23 | public WixDetectSHA2SupportTuple() : base(UtilTupleDefinitions.WixDetectSHA2Support, null, null) | 23 | public WixDetectSHA2SupportSymbol() : base(UtilSymbolDefinitions.WixDetectSHA2Support, null, null) |
24 | { | 24 | { |
25 | } | 25 | } |
26 | 26 | ||
27 | public WixDetectSHA2SupportTuple(SourceLineNumber sourceLineNumber, Identifier id = null) : base(UtilTupleDefinitions.WixDetectSHA2Support, sourceLineNumber, id) | 27 | public WixDetectSHA2SupportSymbol(SourceLineNumber sourceLineNumber, Identifier id = null) : base(UtilSymbolDefinitions.WixDetectSHA2Support, sourceLineNumber, id) |
28 | { | 28 | { |
29 | } | 29 | } |
30 | 30 | ||
31 | public IntermediateField this[GroupTupleFields index] => this.Fields[(int)index]; | 31 | public IntermediateField this[GroupSymbolFields index] => this.Fields[(int)index]; |
32 | } | 32 | } |
33 | } | 33 | } |