aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Tuples/MsiAssemblyTuple.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Data/Tuples/MsiAssemblyTuple.cs')
-rw-r--r--src/WixToolset.Data/Tuples/MsiAssemblyTuple.cs40
1 files changed, 20 insertions, 20 deletions
diff --git a/src/WixToolset.Data/Tuples/MsiAssemblyTuple.cs b/src/WixToolset.Data/Tuples/MsiAssemblyTuple.cs
index 70926557..99903307 100644
--- a/src/WixToolset.Data/Tuples/MsiAssemblyTuple.cs
+++ b/src/WixToolset.Data/Tuples/MsiAssemblyTuple.cs
@@ -10,10 +10,10 @@ namespace WixToolset.Data
10 TupleDefinitionType.MsiAssembly, 10 TupleDefinitionType.MsiAssembly,
11 new[] 11 new[]
12 { 12 {
13 new IntermediateFieldDefinition(nameof(MsiAssemblyTupleFields.Component_), IntermediateFieldType.String), 13 new IntermediateFieldDefinition(nameof(MsiAssemblyTupleFields.ComponentRef), IntermediateFieldType.String),
14 new IntermediateFieldDefinition(nameof(MsiAssemblyTupleFields.Feature_), IntermediateFieldType.String), 14 new IntermediateFieldDefinition(nameof(MsiAssemblyTupleFields.FeatureRef), IntermediateFieldType.String),
15 new IntermediateFieldDefinition(nameof(MsiAssemblyTupleFields.File_Manifest), IntermediateFieldType.String), 15 new IntermediateFieldDefinition(nameof(MsiAssemblyTupleFields.ManifestFileRef), IntermediateFieldType.String),
16 new IntermediateFieldDefinition(nameof(MsiAssemblyTupleFields.File_Application), IntermediateFieldType.String), 16 new IntermediateFieldDefinition(nameof(MsiAssemblyTupleFields.ApplicationFileRef), IntermediateFieldType.String),
17 new IntermediateFieldDefinition(nameof(MsiAssemblyTupleFields.Attributes), IntermediateFieldType.Number), 17 new IntermediateFieldDefinition(nameof(MsiAssemblyTupleFields.Attributes), IntermediateFieldType.Number),
18 }, 18 },
19 typeof(MsiAssemblyTuple)); 19 typeof(MsiAssemblyTuple));
@@ -24,10 +24,10 @@ namespace WixToolset.Data.Tuples
24{ 24{
25 public enum MsiAssemblyTupleFields 25 public enum MsiAssemblyTupleFields
26 { 26 {
27 Component_, 27 ComponentRef,
28 Feature_, 28 FeatureRef,
29 File_Manifest, 29 ManifestFileRef,
30 File_Application, 30 ApplicationFileRef,
31 Attributes, 31 Attributes,
32 } 32 }
33 33
@@ -43,28 +43,28 @@ namespace WixToolset.Data.Tuples
43 43
44 public IntermediateField this[MsiAssemblyTupleFields index] => this.Fields[(int)index]; 44 public IntermediateField this[MsiAssemblyTupleFields index] => this.Fields[(int)index];
45 45
46 public string Component_ 46 public string ComponentRef
47 { 47 {
48 get => (string)this.Fields[(int)MsiAssemblyTupleFields.Component_]; 48 get => (string)this.Fields[(int)MsiAssemblyTupleFields.ComponentRef];
49 set => this.Set((int)MsiAssemblyTupleFields.Component_, value); 49 set => this.Set((int)MsiAssemblyTupleFields.ComponentRef, value);
50 } 50 }
51 51
52 public string Feature_ 52 public string FeatureRef
53 { 53 {
54 get => (string)this.Fields[(int)MsiAssemblyTupleFields.Feature_]; 54 get => (string)this.Fields[(int)MsiAssemblyTupleFields.FeatureRef];
55 set => this.Set((int)MsiAssemblyTupleFields.Feature_, value); 55 set => this.Set((int)MsiAssemblyTupleFields.FeatureRef, value);
56 } 56 }
57 57
58 public string File_Manifest 58 public string ManifestFileRef
59 { 59 {
60 get => (string)this.Fields[(int)MsiAssemblyTupleFields.File_Manifest]; 60 get => (string)this.Fields[(int)MsiAssemblyTupleFields.ManifestFileRef];
61 set => this.Set((int)MsiAssemblyTupleFields.File_Manifest, value); 61 set => this.Set((int)MsiAssemblyTupleFields.ManifestFileRef, value);
62 } 62 }
63 63
64 public string File_Application 64 public string ApplicationFileRef
65 { 65 {
66 get => (string)this.Fields[(int)MsiAssemblyTupleFields.File_Application]; 66 get => (string)this.Fields[(int)MsiAssemblyTupleFields.ApplicationFileRef];
67 set => this.Set((int)MsiAssemblyTupleFields.File_Application, value); 67 set => this.Set((int)MsiAssemblyTupleFields.ApplicationFileRef, value);
68 } 68 }
69 69
70 public FileAssemblyType Type 70 public FileAssemblyType Type