aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Tuples/ServiceControlTuple.cs
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2020-04-11 16:02:25 +1000
committerSean Hall <r.sean.hall@gmail.com>2020-04-12 12:41:13 +1000
commitf49060303504d112b1580c1c90430aab4aaf1763 (patch)
tree0aab79732de62c3dd1b34a5983ea7b60192eb627 /src/WixToolset.Data/Tuples/ServiceControlTuple.cs
parentbe42b2dd8104eec6384ab632d9869e09d29fe827 (diff)
downloadwix-f49060303504d112b1580c1c90430aab4aaf1763.tar.gz
wix-f49060303504d112b1580c1c90430aab4aaf1763.tar.bz2
wix-f49060303504d112b1580c1c90430aab4aaf1763.zip
Move table definitions from Core to Data.
Sync tuple and table definitions.
Diffstat (limited to 'src/WixToolset.Data/Tuples/ServiceControlTuple.cs')
-rw-r--r--src/WixToolset.Data/Tuples/ServiceControlTuple.cs8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/WixToolset.Data/Tuples/ServiceControlTuple.cs b/src/WixToolset.Data/Tuples/ServiceControlTuple.cs
index 113d71db..e34de0df 100644
--- a/src/WixToolset.Data/Tuples/ServiceControlTuple.cs
+++ b/src/WixToolset.Data/Tuples/ServiceControlTuple.cs
@@ -10,7 +10,6 @@ namespace WixToolset.Data
10 TupleDefinitionType.ServiceControl, 10 TupleDefinitionType.ServiceControl,
11 new[] 11 new[]
12 { 12 {
13 new IntermediateFieldDefinition(nameof(ServiceControlTupleFields.ServiceControl), IntermediateFieldType.String),
14 new IntermediateFieldDefinition(nameof(ServiceControlTupleFields.Name), IntermediateFieldType.String), 13 new IntermediateFieldDefinition(nameof(ServiceControlTupleFields.Name), IntermediateFieldType.String),
15 new IntermediateFieldDefinition(nameof(ServiceControlTupleFields.InstallRemove), IntermediateFieldType.Bool), 14 new IntermediateFieldDefinition(nameof(ServiceControlTupleFields.InstallRemove), IntermediateFieldType.Bool),
16 new IntermediateFieldDefinition(nameof(ServiceControlTupleFields.UninstallRemove), IntermediateFieldType.Bool), 15 new IntermediateFieldDefinition(nameof(ServiceControlTupleFields.UninstallRemove), IntermediateFieldType.Bool),
@@ -30,7 +29,6 @@ namespace WixToolset.Data.Tuples
30{ 29{
31 public enum ServiceControlTupleFields 30 public enum ServiceControlTupleFields
32 { 31 {
33 ServiceControl,
34 Name, 32 Name,
35 InstallRemove, 33 InstallRemove,
36 UninstallRemove, 34 UninstallRemove,
@@ -55,12 +53,6 @@ namespace WixToolset.Data.Tuples
55 53
56 public IntermediateField this[ServiceControlTupleFields index] => this.Fields[(int)index]; 54 public IntermediateField this[ServiceControlTupleFields index] => this.Fields[(int)index];
57 55
58 public string ServiceControl
59 {
60 get => (string)this.Fields[(int)ServiceControlTupleFields.ServiceControl];
61 set => this.Set((int)ServiceControlTupleFields.ServiceControl, value);
62 }
63
64 public string Name 56 public string Name
65 { 57 {
66 get => (string)this.Fields[(int)ServiceControlTupleFields.Name]; 58 get => (string)this.Fields[(int)ServiceControlTupleFields.Name];