diff options
Diffstat (limited to 'src/wixext/Tuples/DifxAppTupleDefinitions.cs')
-rw-r--r-- | src/wixext/Tuples/DifxAppTupleDefinitions.cs | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/wixext/Tuples/DifxAppTupleDefinitions.cs b/src/wixext/Tuples/DifxAppTupleDefinitions.cs index 37dabb86..76f4d88f 100644 --- a/src/wixext/Tuples/DifxAppTupleDefinitions.cs +++ b/src/wixext/Tuples/DifxAppTupleDefinitions.cs | |||
@@ -5,18 +5,18 @@ namespace WixToolset.DifxApp | |||
5 | using System; | 5 | using System; |
6 | using WixToolset.Data; | 6 | using WixToolset.Data; |
7 | 7 | ||
8 | public enum DifxAppTupleDefinitionType | 8 | public enum DifxAppSymbolDefinitionType |
9 | { | 9 | { |
10 | MsiDriverPackages, | 10 | MsiDriverPackages, |
11 | } | 11 | } |
12 | 12 | ||
13 | public static partial class DifxAppTupleDefinitions | 13 | public static partial class DifxAppSymbolDefinitions |
14 | { | 14 | { |
15 | public static readonly Version Version = new Version("4.0.0"); | 15 | public static readonly Version Version = new Version("4.0.0"); |
16 | 16 | ||
17 | public static IntermediateTupleDefinition ByName(string name) | 17 | public static IntermediateSymbolDefinition ByName(string name) |
18 | { | 18 | { |
19 | if (!Enum.TryParse(name, out DifxAppTupleDefinitionType type)) | 19 | if (!Enum.TryParse(name, out DifxAppSymbolDefinitionType type)) |
20 | { | 20 | { |
21 | return null; | 21 | return null; |
22 | } | 22 | } |
@@ -24,12 +24,12 @@ namespace WixToolset.DifxApp | |||
24 | return ByType(type); | 24 | return ByType(type); |
25 | } | 25 | } |
26 | 26 | ||
27 | public static IntermediateTupleDefinition ByType(DifxAppTupleDefinitionType type) | 27 | public static IntermediateSymbolDefinition ByType(DifxAppSymbolDefinitionType type) |
28 | { | 28 | { |
29 | switch (type) | 29 | switch (type) |
30 | { | 30 | { |
31 | case DifxAppTupleDefinitionType.MsiDriverPackages: | 31 | case DifxAppSymbolDefinitionType.MsiDriverPackages: |
32 | return DifxAppTupleDefinitions.MsiDriverPackages; | 32 | return DifxAppSymbolDefinitions.MsiDriverPackages; |
33 | 33 | ||
34 | default: | 34 | default: |
35 | throw new ArgumentOutOfRangeException(nameof(type)); | 35 | throw new ArgumentOutOfRangeException(nameof(type)); |