diff options
Diffstat (limited to '')
-rw-r--r-- | src/wixext/Tuples/IIsWebVirtualDirTuple.cs | 58 |
1 files changed, 29 insertions, 29 deletions
diff --git a/src/wixext/Tuples/IIsWebVirtualDirTuple.cs b/src/wixext/Tuples/IIsWebVirtualDirTuple.cs index 3a624b80..bfc29e84 100644 --- a/src/wixext/Tuples/IIsWebVirtualDirTuple.cs +++ b/src/wixext/Tuples/IIsWebVirtualDirTuple.cs | |||
@@ -3,30 +3,30 @@ | |||
3 | namespace WixToolset.Iis | 3 | namespace WixToolset.Iis |
4 | { | 4 | { |
5 | using WixToolset.Data; | 5 | using WixToolset.Data; |
6 | using WixToolset.Iis.Tuples; | 6 | using WixToolset.Iis.Symbols; |
7 | 7 | ||
8 | public static partial class IisTupleDefinitions | 8 | public static partial class IisSymbolDefinitions |
9 | { | 9 | { |
10 | public static readonly IntermediateTupleDefinition IIsWebVirtualDir = new IntermediateTupleDefinition( | 10 | public static readonly IntermediateSymbolDefinition IIsWebVirtualDir = new IntermediateSymbolDefinition( |
11 | IisTupleDefinitionType.IIsWebVirtualDir.ToString(), | 11 | IisSymbolDefinitionType.IIsWebVirtualDir.ToString(), |
12 | new[] | 12 | new[] |
13 | { | 13 | { |
14 | new IntermediateFieldDefinition(nameof(IIsWebVirtualDirTupleFields.ComponentRef), IntermediateFieldType.String), | 14 | new IntermediateFieldDefinition(nameof(IIsWebVirtualDirSymbolFields.ComponentRef), IntermediateFieldType.String), |
15 | new IntermediateFieldDefinition(nameof(IIsWebVirtualDirTupleFields.WebRef), IntermediateFieldType.String), | 15 | new IntermediateFieldDefinition(nameof(IIsWebVirtualDirSymbolFields.WebRef), IntermediateFieldType.String), |
16 | new IntermediateFieldDefinition(nameof(IIsWebVirtualDirTupleFields.Alias), IntermediateFieldType.String), | 16 | new IntermediateFieldDefinition(nameof(IIsWebVirtualDirSymbolFields.Alias), IntermediateFieldType.String), |
17 | new IntermediateFieldDefinition(nameof(IIsWebVirtualDirTupleFields.DirectoryRef), IntermediateFieldType.String), | 17 | new IntermediateFieldDefinition(nameof(IIsWebVirtualDirSymbolFields.DirectoryRef), IntermediateFieldType.String), |
18 | new IntermediateFieldDefinition(nameof(IIsWebVirtualDirTupleFields.DirPropertiesRef), IntermediateFieldType.String), | 18 | new IntermediateFieldDefinition(nameof(IIsWebVirtualDirSymbolFields.DirPropertiesRef), IntermediateFieldType.String), |
19 | new IntermediateFieldDefinition(nameof(IIsWebVirtualDirTupleFields.ApplicationRef), IntermediateFieldType.String), | 19 | new IntermediateFieldDefinition(nameof(IIsWebVirtualDirSymbolFields.ApplicationRef), IntermediateFieldType.String), |
20 | }, | 20 | }, |
21 | typeof(IIsWebVirtualDirTuple)); | 21 | typeof(IIsWebVirtualDirSymbol)); |
22 | } | 22 | } |
23 | } | 23 | } |
24 | 24 | ||
25 | namespace WixToolset.Iis.Tuples | 25 | namespace WixToolset.Iis.Symbols |
26 | { | 26 | { |
27 | using WixToolset.Data; | 27 | using WixToolset.Data; |
28 | 28 | ||
29 | public enum IIsWebVirtualDirTupleFields | 29 | public enum IIsWebVirtualDirSymbolFields |
30 | { | 30 | { |
31 | ComponentRef, | 31 | ComponentRef, |
32 | WebRef, | 32 | WebRef, |
@@ -36,52 +36,52 @@ namespace WixToolset.Iis.Tuples | |||
36 | ApplicationRef, | 36 | ApplicationRef, |
37 | } | 37 | } |
38 | 38 | ||
39 | public class IIsWebVirtualDirTuple : IntermediateTuple | 39 | public class IIsWebVirtualDirSymbol : IntermediateSymbol |
40 | { | 40 | { |
41 | public IIsWebVirtualDirTuple() : base(IisTupleDefinitions.IIsWebVirtualDir, null, null) | 41 | public IIsWebVirtualDirSymbol() : base(IisSymbolDefinitions.IIsWebVirtualDir, null, null) |
42 | { | 42 | { |
43 | } | 43 | } |
44 | 44 | ||
45 | public IIsWebVirtualDirTuple(SourceLineNumber sourceLineNumber, Identifier id = null) : base(IisTupleDefinitions.IIsWebVirtualDir, sourceLineNumber, id) | 45 | public IIsWebVirtualDirSymbol(SourceLineNumber sourceLineNumber, Identifier id = null) : base(IisSymbolDefinitions.IIsWebVirtualDir, sourceLineNumber, id) |
46 | { | 46 | { |
47 | } | 47 | } |
48 | 48 | ||
49 | public IntermediateField this[IIsWebVirtualDirTupleFields index] => this.Fields[(int)index]; | 49 | public IntermediateField this[IIsWebVirtualDirSymbolFields index] => this.Fields[(int)index]; |
50 | 50 | ||
51 | public string ComponentRef | 51 | public string ComponentRef |
52 | { | 52 | { |
53 | get => this.Fields[(int)IIsWebVirtualDirTupleFields.ComponentRef].AsString(); | 53 | get => this.Fields[(int)IIsWebVirtualDirSymbolFields.ComponentRef].AsString(); |
54 | set => this.Set((int)IIsWebVirtualDirTupleFields.ComponentRef, value); | 54 | set => this.Set((int)IIsWebVirtualDirSymbolFields.ComponentRef, value); |
55 | } | 55 | } |
56 | 56 | ||
57 | public string WebRef | 57 | public string WebRef |
58 | { | 58 | { |
59 | get => this.Fields[(int)IIsWebVirtualDirTupleFields.WebRef].AsString(); | 59 | get => this.Fields[(int)IIsWebVirtualDirSymbolFields.WebRef].AsString(); |
60 | set => this.Set((int)IIsWebVirtualDirTupleFields.WebRef, value); | 60 | set => this.Set((int)IIsWebVirtualDirSymbolFields.WebRef, value); |
61 | } | 61 | } |
62 | 62 | ||
63 | public string Alias | 63 | public string Alias |
64 | { | 64 | { |
65 | get => this.Fields[(int)IIsWebVirtualDirTupleFields.Alias].AsString(); | 65 | get => this.Fields[(int)IIsWebVirtualDirSymbolFields.Alias].AsString(); |
66 | set => this.Set((int)IIsWebVirtualDirTupleFields.Alias, value); | 66 | set => this.Set((int)IIsWebVirtualDirSymbolFields.Alias, value); |
67 | } | 67 | } |
68 | 68 | ||
69 | public string DirectoryRef | 69 | public string DirectoryRef |
70 | { | 70 | { |
71 | get => this.Fields[(int)IIsWebVirtualDirTupleFields.DirectoryRef].AsString(); | 71 | get => this.Fields[(int)IIsWebVirtualDirSymbolFields.DirectoryRef].AsString(); |
72 | set => this.Set((int)IIsWebVirtualDirTupleFields.DirectoryRef, value); | 72 | set => this.Set((int)IIsWebVirtualDirSymbolFields.DirectoryRef, value); |
73 | } | 73 | } |
74 | 74 | ||
75 | public string DirPropertiesRef | 75 | public string DirPropertiesRef |
76 | { | 76 | { |
77 | get => this.Fields[(int)IIsWebVirtualDirTupleFields.DirPropertiesRef].AsString(); | 77 | get => this.Fields[(int)IIsWebVirtualDirSymbolFields.DirPropertiesRef].AsString(); |
78 | set => this.Set((int)IIsWebVirtualDirTupleFields.DirPropertiesRef, value); | 78 | set => this.Set((int)IIsWebVirtualDirSymbolFields.DirPropertiesRef, value); |
79 | } | 79 | } |
80 | 80 | ||
81 | public string ApplicationRef | 81 | public string ApplicationRef |
82 | { | 82 | { |
83 | get => this.Fields[(int)IIsWebVirtualDirTupleFields.ApplicationRef].AsString(); | 83 | get => this.Fields[(int)IIsWebVirtualDirSymbolFields.ApplicationRef].AsString(); |
84 | set => this.Set((int)IIsWebVirtualDirTupleFields.ApplicationRef, value); | 84 | set => this.Set((int)IIsWebVirtualDirSymbolFields.ApplicationRef, value); |
85 | } | 85 | } |
86 | } | 86 | } |
87 | } \ No newline at end of file | 87 | } \ No newline at end of file |