aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Tuples/WixInstanceTransformsTuple.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2019-05-22 00:19:41 -0700
committerRob Mensching <rob@firegiant.com>2019-05-23 15:43:40 -0700
commit54541ef517190f37d0625627b028834f0871a959 (patch)
tree91ff4d813d5013260c04854a9ad24812ccdffa08 /src/WixToolset.Data/Tuples/WixInstanceTransformsTuple.cs
parent505fe69d85c90184cd37290ccb0120fec6074c20 (diff)
downloadwix-54541ef517190f37d0625627b028834f0871a959.tar.gz
wix-54541ef517190f37d0625627b028834f0871a959.tar.bz2
wix-54541ef517190f37d0625627b028834f0871a959.zip
Implement many more strong tuples
Also fixes several warnings.
Diffstat (limited to 'src/WixToolset.Data/Tuples/WixInstanceTransformsTuple.cs')
-rw-r--r--src/WixToolset.Data/Tuples/WixInstanceTransformsTuple.cs10
1 files changed, 1 insertions, 9 deletions
diff --git a/src/WixToolset.Data/Tuples/WixInstanceTransformsTuple.cs b/src/WixToolset.Data/Tuples/WixInstanceTransformsTuple.cs
index a72bad0f..efcaa7b9 100644
--- a/src/WixToolset.Data/Tuples/WixInstanceTransformsTuple.cs
+++ b/src/WixToolset.Data/Tuples/WixInstanceTransformsTuple.cs
@@ -10,7 +10,6 @@ namespace WixToolset.Data
10 TupleDefinitionType.WixInstanceTransforms, 10 TupleDefinitionType.WixInstanceTransforms,
11 new[] 11 new[]
12 { 12 {
13 new IntermediateFieldDefinition(nameof(WixInstanceTransformsTupleFields.Id), IntermediateFieldType.String),
14 new IntermediateFieldDefinition(nameof(WixInstanceTransformsTupleFields.PropertyId), IntermediateFieldType.String), 13 new IntermediateFieldDefinition(nameof(WixInstanceTransformsTupleFields.PropertyId), IntermediateFieldType.String),
15 new IntermediateFieldDefinition(nameof(WixInstanceTransformsTupleFields.ProductCode), IntermediateFieldType.String), 14 new IntermediateFieldDefinition(nameof(WixInstanceTransformsTupleFields.ProductCode), IntermediateFieldType.String),
16 new IntermediateFieldDefinition(nameof(WixInstanceTransformsTupleFields.ProductName), IntermediateFieldType.String), 15 new IntermediateFieldDefinition(nameof(WixInstanceTransformsTupleFields.ProductName), IntermediateFieldType.String),
@@ -24,7 +23,6 @@ namespace WixToolset.Data.Tuples
24{ 23{
25 public enum WixInstanceTransformsTupleFields 24 public enum WixInstanceTransformsTupleFields
26 { 25 {
27 Id,
28 PropertyId, 26 PropertyId,
29 ProductCode, 27 ProductCode,
30 ProductName, 28 ProductName,
@@ -43,12 +41,6 @@ namespace WixToolset.Data.Tuples
43 41
44 public IntermediateField this[WixInstanceTransformsTupleFields index] => this.Fields[(int)index]; 42 public IntermediateField this[WixInstanceTransformsTupleFields index] => this.Fields[(int)index];
45 43
46 public string Id
47 {
48 get => (string)this.Fields[(int)WixInstanceTransformsTupleFields.Id];
49 set => this.Set((int)WixInstanceTransformsTupleFields.Id, value);
50 }
51
52 public string PropertyId 44 public string PropertyId
53 { 45 {
54 get => (string)this.Fields[(int)WixInstanceTransformsTupleFields.PropertyId]; 46 get => (string)this.Fields[(int)WixInstanceTransformsTupleFields.PropertyId];
@@ -73,4 +65,4 @@ namespace WixToolset.Data.Tuples
73 set => this.Set((int)WixInstanceTransformsTupleFields.UpgradeCode, value); 65 set => this.Set((int)WixInstanceTransformsTupleFields.UpgradeCode, value);
74 } 66 }
75 } 67 }
76} \ No newline at end of file 68}