From f49060303504d112b1580c1c90430aab4aaf1763 Mon Sep 17 00:00:00 2001 From: Sean Hall Date: Sat, 11 Apr 2020 16:02:25 +1000 Subject: Move table definitions from Core to Data. Sync tuple and table definitions. --- src/WixToolset.Data/Tuples/ServiceControlTuple.cs | 8 -------- 1 file changed, 8 deletions(-) (limited to 'src/WixToolset.Data/Tuples/ServiceControlTuple.cs') 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 TupleDefinitionType.ServiceControl, new[] { - new IntermediateFieldDefinition(nameof(ServiceControlTupleFields.ServiceControl), IntermediateFieldType.String), new IntermediateFieldDefinition(nameof(ServiceControlTupleFields.Name), IntermediateFieldType.String), new IntermediateFieldDefinition(nameof(ServiceControlTupleFields.InstallRemove), IntermediateFieldType.Bool), new IntermediateFieldDefinition(nameof(ServiceControlTupleFields.UninstallRemove), IntermediateFieldType.Bool), @@ -30,7 +29,6 @@ namespace WixToolset.Data.Tuples { public enum ServiceControlTupleFields { - ServiceControl, Name, InstallRemove, UninstallRemove, @@ -55,12 +53,6 @@ namespace WixToolset.Data.Tuples public IntermediateField this[ServiceControlTupleFields index] => this.Fields[(int)index]; - public string ServiceControl - { - get => (string)this.Fields[(int)ServiceControlTupleFields.ServiceControl]; - set => this.Set((int)ServiceControlTupleFields.ServiceControl, value); - } - public string Name { get => (string)this.Fields[(int)ServiceControlTupleFields.Name]; -- cgit v1.2.3-55-g6feb