aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Tuples/ODBCDriverTuple.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Data/Tuples/ODBCDriverTuple.cs')
-rw-r--r--src/WixToolset.Data/Tuples/ODBCDriverTuple.cs30
1 files changed, 15 insertions, 15 deletions
diff --git a/src/WixToolset.Data/Tuples/ODBCDriverTuple.cs b/src/WixToolset.Data/Tuples/ODBCDriverTuple.cs
index 508a4933..79de70e5 100644
--- a/src/WixToolset.Data/Tuples/ODBCDriverTuple.cs
+++ b/src/WixToolset.Data/Tuples/ODBCDriverTuple.cs
@@ -10,10 +10,10 @@ namespace WixToolset.Data
10 TupleDefinitionType.ODBCDriver, 10 TupleDefinitionType.ODBCDriver,
11 new[] 11 new[]
12 { 12 {
13 new IntermediateFieldDefinition(nameof(ODBCDriverTupleFields.Component_), IntermediateFieldType.String), 13 new IntermediateFieldDefinition(nameof(ODBCDriverTupleFields.ComponentRef), IntermediateFieldType.String),
14 new IntermediateFieldDefinition(nameof(ODBCDriverTupleFields.Description), IntermediateFieldType.String), 14 new IntermediateFieldDefinition(nameof(ODBCDriverTupleFields.Description), IntermediateFieldType.String),
15 new IntermediateFieldDefinition(nameof(ODBCDriverTupleFields.File_), IntermediateFieldType.String), 15 new IntermediateFieldDefinition(nameof(ODBCDriverTupleFields.FileRef), IntermediateFieldType.String),
16 new IntermediateFieldDefinition(nameof(ODBCDriverTupleFields.File_Setup), IntermediateFieldType.String), 16 new IntermediateFieldDefinition(nameof(ODBCDriverTupleFields.SetupFileRef), IntermediateFieldType.String),
17 }, 17 },
18 typeof(ODBCDriverTuple)); 18 typeof(ODBCDriverTuple));
19 } 19 }
@@ -23,10 +23,10 @@ namespace WixToolset.Data.Tuples
23{ 23{
24 public enum ODBCDriverTupleFields 24 public enum ODBCDriverTupleFields
25 { 25 {
26 Component_, 26 ComponentRef,
27 Description, 27 Description,
28 File_, 28 FileRef,
29 File_Setup, 29 SetupFileRef,
30 } 30 }
31 31
32 public class ODBCDriverTuple : IntermediateTuple 32 public class ODBCDriverTuple : IntermediateTuple
@@ -41,10 +41,10 @@ namespace WixToolset.Data.Tuples
41 41
42 public IntermediateField this[ODBCDriverTupleFields index] => this.Fields[(int)index]; 42 public IntermediateField this[ODBCDriverTupleFields index] => this.Fields[(int)index];
43 43
44 public string Component_ 44 public string ComponentRef
45 { 45 {
46 get => (string)this.Fields[(int)ODBCDriverTupleFields.Component_]; 46 get => (string)this.Fields[(int)ODBCDriverTupleFields.ComponentRef];
47 set => this.Set((int)ODBCDriverTupleFields.Component_, value); 47 set => this.Set((int)ODBCDriverTupleFields.ComponentRef, value);
48 } 48 }
49 49
50 public string Description 50 public string Description
@@ -53,16 +53,16 @@ namespace WixToolset.Data.Tuples
53 set => this.Set((int)ODBCDriverTupleFields.Description, value); 53 set => this.Set((int)ODBCDriverTupleFields.Description, value);
54 } 54 }
55 55
56 public string File_ 56 public string FileRef
57 { 57 {
58 get => (string)this.Fields[(int)ODBCDriverTupleFields.File_]; 58 get => (string)this.Fields[(int)ODBCDriverTupleFields.FileRef];
59 set => this.Set((int)ODBCDriverTupleFields.File_, value); 59 set => this.Set((int)ODBCDriverTupleFields.FileRef, value);
60 } 60 }
61 61
62 public string File_Setup 62 public string SetupFileRef
63 { 63 {
64 get => (string)this.Fields[(int)ODBCDriverTupleFields.File_Setup]; 64 get => (string)this.Fields[(int)ODBCDriverTupleFields.SetupFileRef];
65 set => this.Set((int)ODBCDriverTupleFields.File_Setup, value); 65 set => this.Set((int)ODBCDriverTupleFields.SetupFileRef, value);
66 } 66 }
67 } 67 }
68} 68}