aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Tuples/WixBundleVariableTuple.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Data/Tuples/WixBundleVariableTuple.cs')
-rw-r--r--src/WixToolset.Data/Tuples/WixBundleVariableTuple.cs10
1 files changed, 1 insertions, 9 deletions
diff --git a/src/WixToolset.Data/Tuples/WixBundleVariableTuple.cs b/src/WixToolset.Data/Tuples/WixBundleVariableTuple.cs
index b71f20e1..d7d74657 100644
--- a/src/WixToolset.Data/Tuples/WixBundleVariableTuple.cs
+++ b/src/WixToolset.Data/Tuples/WixBundleVariableTuple.cs
@@ -10,7 +10,6 @@ namespace WixToolset.Data
10 TupleDefinitionType.WixBundleVariable, 10 TupleDefinitionType.WixBundleVariable,
11 new[] 11 new[]
12 { 12 {
13 new IntermediateFieldDefinition(nameof(WixBundleVariableTupleFields.WixBundleVariable), IntermediateFieldType.String),
14 new IntermediateFieldDefinition(nameof(WixBundleVariableTupleFields.Value), IntermediateFieldType.String), 13 new IntermediateFieldDefinition(nameof(WixBundleVariableTupleFields.Value), IntermediateFieldType.String),
15 new IntermediateFieldDefinition(nameof(WixBundleVariableTupleFields.Type), IntermediateFieldType.String), 14 new IntermediateFieldDefinition(nameof(WixBundleVariableTupleFields.Type), IntermediateFieldType.String),
16 new IntermediateFieldDefinition(nameof(WixBundleVariableTupleFields.Hidden), IntermediateFieldType.Bool), 15 new IntermediateFieldDefinition(nameof(WixBundleVariableTupleFields.Hidden), IntermediateFieldType.Bool),
@@ -24,7 +23,6 @@ namespace WixToolset.Data.Tuples
24{ 23{
25 public enum WixBundleVariableTupleFields 24 public enum WixBundleVariableTupleFields
26 { 25 {
27 WixBundleVariable,
28 Value, 26 Value,
29 Type, 27 Type,
30 Hidden, 28 Hidden,
@@ -43,12 +41,6 @@ namespace WixToolset.Data.Tuples
43 41
44 public IntermediateField this[WixBundleVariableTupleFields index] => this.Fields[(int)index]; 42 public IntermediateField this[WixBundleVariableTupleFields index] => this.Fields[(int)index];
45 43
46 public string WixBundleVariable
47 {
48 get => (string)this.Fields[(int)WixBundleVariableTupleFields.WixBundleVariable];
49 set => this.Set((int)WixBundleVariableTupleFields.WixBundleVariable, value);
50 }
51
52 public string Value 44 public string Value
53 { 45 {
54 get => (string)this.Fields[(int)WixBundleVariableTupleFields.Value]; 46 get => (string)this.Fields[(int)WixBundleVariableTupleFields.Value];
@@ -73,4 +65,4 @@ namespace WixToolset.Data.Tuples
73 set => this.Set((int)WixBundleVariableTupleFields.Persisted, value); 65 set => this.Set((int)WixBundleVariableTupleFields.Persisted, value);
74 } 66 }
75 } 67 }
76} \ No newline at end of file 68}