aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Tuples/AssemblyTuple.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Data/Tuples/AssemblyTuple.cs')
-rw-r--r--src/WixToolset.Data/Tuples/AssemblyTuple.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/WixToolset.Data/Tuples/AssemblyTuple.cs b/src/WixToolset.Data/Tuples/AssemblyTuple.cs
index 15367cc3..d1e5e1ce 100644
--- a/src/WixToolset.Data/Tuples/AssemblyTuple.cs
+++ b/src/WixToolset.Data/Tuples/AssemblyTuple.cs
@@ -14,7 +14,7 @@ namespace WixToolset.Data
14 new IntermediateFieldDefinition(nameof(AssemblyTupleFields.FeatureRef), IntermediateFieldType.String), 14 new IntermediateFieldDefinition(nameof(AssemblyTupleFields.FeatureRef), IntermediateFieldType.String),
15 new IntermediateFieldDefinition(nameof(AssemblyTupleFields.ManifestFileRef), IntermediateFieldType.String), 15 new IntermediateFieldDefinition(nameof(AssemblyTupleFields.ManifestFileRef), IntermediateFieldType.String),
16 new IntermediateFieldDefinition(nameof(AssemblyTupleFields.ApplicationFileRef), IntermediateFieldType.String), 16 new IntermediateFieldDefinition(nameof(AssemblyTupleFields.ApplicationFileRef), IntermediateFieldType.String),
17 new IntermediateFieldDefinition(nameof(AssemblyTupleFields.Attributes), IntermediateFieldType.Number), 17 new IntermediateFieldDefinition(nameof(AssemblyTupleFields.Type), IntermediateFieldType.Number),
18 new IntermediateFieldDefinition(nameof(AssemblyTupleFields.ProcessorArchitecture), IntermediateFieldType.String), 18 new IntermediateFieldDefinition(nameof(AssemblyTupleFields.ProcessorArchitecture), IntermediateFieldType.String),
19 }, 19 },
20 typeof(AssemblyTuple)); 20 typeof(AssemblyTuple));
@@ -29,7 +29,7 @@ namespace WixToolset.Data.Tuples
29 FeatureRef, 29 FeatureRef,
30 ManifestFileRef, 30 ManifestFileRef,
31 ApplicationFileRef, 31 ApplicationFileRef,
32 Attributes, 32 Type,
33 ProcessorArchitecture, 33 ProcessorArchitecture,
34 } 34 }
35 35
@@ -83,8 +83,8 @@ namespace WixToolset.Data.Tuples
83 83
84 public AssemblyType Type 84 public AssemblyType Type
85 { 85 {
86 get => (AssemblyType)this.Fields[(int)AssemblyTupleFields.Attributes].AsNumber(); 86 get => (AssemblyType)this.Fields[(int)AssemblyTupleFields.Type].AsNumber();
87 set => this.Set((int)AssemblyTupleFields.Attributes, (int)value); 87 set => this.Set((int)AssemblyTupleFields.Type, (int)value);
88 } 88 }
89 89
90 public string ProcessorArchitecture 90 public string ProcessorArchitecture