aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Tuples/MsiServiceConfigTuple.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Data/Tuples/MsiServiceConfigTuple.cs')
-rw-r--r--src/WixToolset.Data/Tuples/MsiServiceConfigTuple.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/WixToolset.Data/Tuples/MsiServiceConfigTuple.cs b/src/WixToolset.Data/Tuples/MsiServiceConfigTuple.cs
index b0a58d9f..4943c245 100644
--- a/src/WixToolset.Data/Tuples/MsiServiceConfigTuple.cs
+++ b/src/WixToolset.Data/Tuples/MsiServiceConfigTuple.cs
@@ -16,7 +16,7 @@ namespace WixToolset.Data
16 new IntermediateFieldDefinition(nameof(MsiServiceConfigFailureActionsTupleFields.OnUninstall), IntermediateFieldType.Bool), 16 new IntermediateFieldDefinition(nameof(MsiServiceConfigFailureActionsTupleFields.OnUninstall), IntermediateFieldType.Bool),
17 new IntermediateFieldDefinition(nameof(MsiServiceConfigTupleFields.ConfigType), IntermediateFieldType.Number), 17 new IntermediateFieldDefinition(nameof(MsiServiceConfigTupleFields.ConfigType), IntermediateFieldType.Number),
18 new IntermediateFieldDefinition(nameof(MsiServiceConfigTupleFields.Argument), IntermediateFieldType.String), 18 new IntermediateFieldDefinition(nameof(MsiServiceConfigTupleFields.Argument), IntermediateFieldType.String),
19 new IntermediateFieldDefinition(nameof(MsiServiceConfigTupleFields.Component_), IntermediateFieldType.String), 19 new IntermediateFieldDefinition(nameof(MsiServiceConfigTupleFields.ComponentRef), IntermediateFieldType.String),
20 }, 20 },
21 typeof(MsiServiceConfigTuple)); 21 typeof(MsiServiceConfigTuple));
22 } 22 }
@@ -33,7 +33,7 @@ namespace WixToolset.Data.Tuples
33 OnUninstall, 33 OnUninstall,
34 ConfigType, 34 ConfigType,
35 Argument, 35 Argument,
36 Component_, 36 ComponentRef,
37 } 37 }
38 38
39 public enum MsiServiceConfigType 39 public enum MsiServiceConfigType
@@ -93,10 +93,10 @@ namespace WixToolset.Data.Tuples
93 set => this.Set((int)MsiServiceConfigTupleFields.Argument, value); 93 set => this.Set((int)MsiServiceConfigTupleFields.Argument, value);
94 } 94 }
95 95
96 public string Component_ 96 public string ComponentRef
97 { 97 {
98 get => (string)this.Fields[(int)MsiServiceConfigTupleFields.Component_]; 98 get => (string)this.Fields[(int)MsiServiceConfigTupleFields.ComponentRef];
99 set => this.Set((int)MsiServiceConfigTupleFields.Component_, value); 99 set => this.Set((int)MsiServiceConfigTupleFields.ComponentRef, value);
100 } 100 }
101 } 101 }
102} \ No newline at end of file 102} \ No newline at end of file