aboutsummaryrefslogtreecommitdiff
path: root/src/wixext/Tuples/IIsWebDirTuple.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/wixext/Tuples/IIsWebDirTuple.cs')
-rw-r--r--src/wixext/Tuples/IIsWebDirTuple.cs48
1 files changed, 20 insertions, 28 deletions
diff --git a/src/wixext/Tuples/IIsWebDirTuple.cs b/src/wixext/Tuples/IIsWebDirTuple.cs
index 6e04b337..471fe223 100644
--- a/src/wixext/Tuples/IIsWebDirTuple.cs
+++ b/src/wixext/Tuples/IIsWebDirTuple.cs
@@ -11,12 +11,11 @@ namespace WixToolset.Iis
11 IisTupleDefinitionType.IIsWebDir.ToString(), 11 IisTupleDefinitionType.IIsWebDir.ToString(),
12 new[] 12 new[]
13 { 13 {
14 new IntermediateFieldDefinition(nameof(IIsWebDirTupleFields.WebDir), IntermediateFieldType.String), 14 new IntermediateFieldDefinition(nameof(IIsWebDirTupleFields.ComponentRef), IntermediateFieldType.String),
15 new IntermediateFieldDefinition(nameof(IIsWebDirTupleFields.Component_), IntermediateFieldType.String), 15 new IntermediateFieldDefinition(nameof(IIsWebDirTupleFields.WebRef), IntermediateFieldType.String),
16 new IntermediateFieldDefinition(nameof(IIsWebDirTupleFields.Web_), IntermediateFieldType.String),
17 new IntermediateFieldDefinition(nameof(IIsWebDirTupleFields.Path), IntermediateFieldType.String), 16 new IntermediateFieldDefinition(nameof(IIsWebDirTupleFields.Path), IntermediateFieldType.String),
18 new IntermediateFieldDefinition(nameof(IIsWebDirTupleFields.DirProperties_), IntermediateFieldType.String), 17 new IntermediateFieldDefinition(nameof(IIsWebDirTupleFields.DirPropertiesRef), IntermediateFieldType.String),
19 new IntermediateFieldDefinition(nameof(IIsWebDirTupleFields.Application_), IntermediateFieldType.String), 18 new IntermediateFieldDefinition(nameof(IIsWebDirTupleFields.ApplicationRef), IntermediateFieldType.String),
20 }, 19 },
21 typeof(IIsWebDirTuple)); 20 typeof(IIsWebDirTuple));
22 } 21 }
@@ -28,12 +27,11 @@ namespace WixToolset.Iis.Tuples
28 27
29 public enum IIsWebDirTupleFields 28 public enum IIsWebDirTupleFields
30 { 29 {
31 WebDir, 30 ComponentRef,
32 Component_, 31 WebRef,
33 Web_,
34 Path, 32 Path,
35 DirProperties_, 33 DirPropertiesRef,
36 Application_, 34 ApplicationRef,
37 } 35 }
38 36
39 public class IIsWebDirTuple : IntermediateTuple 37 public class IIsWebDirTuple : IntermediateTuple
@@ -48,22 +46,16 @@ namespace WixToolset.Iis.Tuples
48 46
49 public IntermediateField this[IIsWebDirTupleFields index] => this.Fields[(int)index]; 47 public IntermediateField this[IIsWebDirTupleFields index] => this.Fields[(int)index];
50 48
51 public string WebDir 49 public string ComponentRef
52 { 50 {
53 get => this.Fields[(int)IIsWebDirTupleFields.WebDir].AsString(); 51 get => this.Fields[(int)IIsWebDirTupleFields.ComponentRef].AsString();
54 set => this.Set((int)IIsWebDirTupleFields.WebDir, value); 52 set => this.Set((int)IIsWebDirTupleFields.ComponentRef, value);
55 } 53 }
56 54
57 public string Component_ 55 public string WebRef
58 { 56 {
59 get => this.Fields[(int)IIsWebDirTupleFields.Component_].AsString(); 57 get => this.Fields[(int)IIsWebDirTupleFields.WebRef].AsString();
60 set => this.Set((int)IIsWebDirTupleFields.Component_, value); 58 set => this.Set((int)IIsWebDirTupleFields.WebRef, value);
61 }
62
63 public string Web_
64 {
65 get => this.Fields[(int)IIsWebDirTupleFields.Web_].AsString();
66 set => this.Set((int)IIsWebDirTupleFields.Web_, value);
67 } 59 }
68 60
69 public string Path 61 public string Path
@@ -72,16 +64,16 @@ namespace WixToolset.Iis.Tuples
72 set => this.Set((int)IIsWebDirTupleFields.Path, value); 64 set => this.Set((int)IIsWebDirTupleFields.Path, value);
73 } 65 }
74 66
75 public string DirProperties_ 67 public string DirPropertiesRef
76 { 68 {
77 get => this.Fields[(int)IIsWebDirTupleFields.DirProperties_].AsString(); 69 get => this.Fields[(int)IIsWebDirTupleFields.DirPropertiesRef].AsString();
78 set => this.Set((int)IIsWebDirTupleFields.DirProperties_, value); 70 set => this.Set((int)IIsWebDirTupleFields.DirPropertiesRef, value);
79 } 71 }
80 72
81 public string Application_ 73 public string ApplicationRef
82 { 74 {
83 get => this.Fields[(int)IIsWebDirTupleFields.Application_].AsString(); 75 get => this.Fields[(int)IIsWebDirTupleFields.ApplicationRef].AsString();
84 set => this.Set((int)IIsWebDirTupleFields.Application_, value); 76 set => this.Set((int)IIsWebDirTupleFields.ApplicationRef, value);
85 } 77 }
86 } 78 }
87} \ No newline at end of file 79} \ No newline at end of file