diff options
Diffstat (limited to '')
-rw-r--r-- | src/WixToolset.Data/Tuples/WixPatchIdTuple.cs | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/WixToolset.Data/Tuples/WixPatchIdTuple.cs b/src/WixToolset.Data/Tuples/WixPatchIdTuple.cs index 303ccecd..35c99493 100644 --- a/src/WixToolset.Data/Tuples/WixPatchIdTuple.cs +++ b/src/WixToolset.Data/Tuples/WixPatchIdTuple.cs | |||
@@ -10,7 +10,6 @@ namespace WixToolset.Data | |||
10 | TupleDefinitionType.WixPatchId, | 10 | TupleDefinitionType.WixPatchId, |
11 | new[] | 11 | new[] |
12 | { | 12 | { |
13 | new IntermediateFieldDefinition(nameof(WixPatchIdTupleFields.ProductCode), IntermediateFieldType.String), | ||
14 | new IntermediateFieldDefinition(nameof(WixPatchIdTupleFields.ClientPatchId), IntermediateFieldType.String), | 13 | new IntermediateFieldDefinition(nameof(WixPatchIdTupleFields.ClientPatchId), IntermediateFieldType.String), |
15 | new IntermediateFieldDefinition(nameof(WixPatchIdTupleFields.OptimizePatchSizeForLargeFiles), IntermediateFieldType.Bool), | 14 | new IntermediateFieldDefinition(nameof(WixPatchIdTupleFields.OptimizePatchSizeForLargeFiles), IntermediateFieldType.Bool), |
16 | new IntermediateFieldDefinition(nameof(WixPatchIdTupleFields.ApiPatchingSymbolFlags), IntermediateFieldType.Number), | 15 | new IntermediateFieldDefinition(nameof(WixPatchIdTupleFields.ApiPatchingSymbolFlags), IntermediateFieldType.Number), |
@@ -23,7 +22,6 @@ namespace WixToolset.Data.Tuples | |||
23 | { | 22 | { |
24 | public enum WixPatchIdTupleFields | 23 | public enum WixPatchIdTupleFields |
25 | { | 24 | { |
26 | ProductCode, | ||
27 | ClientPatchId, | 25 | ClientPatchId, |
28 | OptimizePatchSizeForLargeFiles, | 26 | OptimizePatchSizeForLargeFiles, |
29 | ApiPatchingSymbolFlags, | 27 | ApiPatchingSymbolFlags, |
@@ -41,12 +39,6 @@ namespace WixToolset.Data.Tuples | |||
41 | 39 | ||
42 | public IntermediateField this[WixPatchIdTupleFields index] => this.Fields[(int)index]; | 40 | public IntermediateField this[WixPatchIdTupleFields index] => this.Fields[(int)index]; |
43 | 41 | ||
44 | public string ProductCode | ||
45 | { | ||
46 | get => (string)this.Fields[(int)WixPatchIdTupleFields.ProductCode]; | ||
47 | set => this.Set((int)WixPatchIdTupleFields.ProductCode, value); | ||
48 | } | ||
49 | |||
50 | public string ClientPatchId | 42 | public string ClientPatchId |
51 | { | 43 | { |
52 | get => (string)this.Fields[(int)WixPatchIdTupleFields.ClientPatchId]; | 44 | get => (string)this.Fields[(int)WixPatchIdTupleFields.ClientPatchId]; |