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.cs10
1 files changed, 1 insertions, 9 deletions
diff --git a/src/WixToolset.Data/Tuples/ODBCDriverTuple.cs b/src/WixToolset.Data/Tuples/ODBCDriverTuple.cs
index a35d62f4..508a4933 100644
--- a/src/WixToolset.Data/Tuples/ODBCDriverTuple.cs
+++ b/src/WixToolset.Data/Tuples/ODBCDriverTuple.cs
@@ -10,7 +10,6 @@ namespace WixToolset.Data
10 TupleDefinitionType.ODBCDriver, 10 TupleDefinitionType.ODBCDriver,
11 new[] 11 new[]
12 { 12 {
13 new IntermediateFieldDefinition(nameof(ODBCDriverTupleFields.Driver), IntermediateFieldType.String),
14 new IntermediateFieldDefinition(nameof(ODBCDriverTupleFields.Component_), IntermediateFieldType.String), 13 new IntermediateFieldDefinition(nameof(ODBCDriverTupleFields.Component_), IntermediateFieldType.String),
15 new IntermediateFieldDefinition(nameof(ODBCDriverTupleFields.Description), IntermediateFieldType.String), 14 new IntermediateFieldDefinition(nameof(ODBCDriverTupleFields.Description), IntermediateFieldType.String),
16 new IntermediateFieldDefinition(nameof(ODBCDriverTupleFields.File_), IntermediateFieldType.String), 15 new IntermediateFieldDefinition(nameof(ODBCDriverTupleFields.File_), IntermediateFieldType.String),
@@ -24,7 +23,6 @@ namespace WixToolset.Data.Tuples
24{ 23{
25 public enum ODBCDriverTupleFields 24 public enum ODBCDriverTupleFields
26 { 25 {
27 Driver,
28 Component_, 26 Component_,
29 Description, 27 Description,
30 File_, 28 File_,
@@ -43,12 +41,6 @@ namespace WixToolset.Data.Tuples
43 41
44 public IntermediateField this[ODBCDriverTupleFields index] => this.Fields[(int)index]; 42 public IntermediateField this[ODBCDriverTupleFields index] => this.Fields[(int)index];
45 43
46 public string Driver
47 {
48 get => (string)this.Fields[(int)ODBCDriverTupleFields.Driver];
49 set => this.Set((int)ODBCDriverTupleFields.Driver, value);
50 }
51
52 public string Component_ 44 public string Component_
53 { 45 {
54 get => (string)this.Fields[(int)ODBCDriverTupleFields.Component_]; 46 get => (string)this.Fields[(int)ODBCDriverTupleFields.Component_];
@@ -73,4 +65,4 @@ namespace WixToolset.Data.Tuples
73 set => this.Set((int)ODBCDriverTupleFields.File_Setup, value); 65 set => this.Set((int)ODBCDriverTupleFields.File_Setup, value);
74 } 66 }
75 } 67 }
76} \ No newline at end of file 68}