diff options
Diffstat (limited to 'src/WixToolset.Data/Tuples/WixPatchMetadataTuple.cs')
-rw-r--r-- | src/WixToolset.Data/Tuples/WixPatchMetadataTuple.cs | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/src/WixToolset.Data/Tuples/WixPatchMetadataTuple.cs b/src/WixToolset.Data/Tuples/WixPatchMetadataTuple.cs index 7c065fe8..b64fd891 100644 --- a/src/WixToolset.Data/Tuples/WixPatchMetadataTuple.cs +++ b/src/WixToolset.Data/Tuples/WixPatchMetadataTuple.cs | |||
@@ -1,5 +1,7 @@ | |||
1 | // Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. | 1 | // Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. |
2 | 2 | ||
3 | // TODO: delete this | ||
4 | |||
3 | namespace WixToolset.Data | 5 | namespace WixToolset.Data |
4 | { | 6 | { |
5 | using WixToolset.Data.Tuples; | 7 | using WixToolset.Data.Tuples; |
@@ -10,7 +12,6 @@ namespace WixToolset.Data | |||
10 | TupleDefinitionType.WixPatchMetadata, | 12 | TupleDefinitionType.WixPatchMetadata, |
11 | new[] | 13 | new[] |
12 | { | 14 | { |
13 | new IntermediateFieldDefinition(nameof(WixPatchMetadataTupleFields.Property), IntermediateFieldType.String), | ||
14 | new IntermediateFieldDefinition(nameof(WixPatchMetadataTupleFields.Value), IntermediateFieldType.String), | 15 | new IntermediateFieldDefinition(nameof(WixPatchMetadataTupleFields.Value), IntermediateFieldType.String), |
15 | }, | 16 | }, |
16 | typeof(WixPatchMetadataTuple)); | 17 | typeof(WixPatchMetadataTuple)); |
@@ -21,7 +22,6 @@ namespace WixToolset.Data.Tuples | |||
21 | { | 22 | { |
22 | public enum WixPatchMetadataTupleFields | 23 | public enum WixPatchMetadataTupleFields |
23 | { | 24 | { |
24 | Property, | ||
25 | Value, | 25 | Value, |
26 | } | 26 | } |
27 | 27 | ||
@@ -37,12 +37,6 @@ namespace WixToolset.Data.Tuples | |||
37 | 37 | ||
38 | public IntermediateField this[WixPatchMetadataTupleFields index] => this.Fields[(int)index]; | 38 | public IntermediateField this[WixPatchMetadataTupleFields index] => this.Fields[(int)index]; |
39 | 39 | ||
40 | public string Property | ||
41 | { | ||
42 | get => (string)this.Fields[(int)WixPatchMetadataTupleFields.Property]; | ||
43 | set => this.Set((int)WixPatchMetadataTupleFields.Property, value); | ||
44 | } | ||
45 | |||
46 | public string Value | 40 | public string Value |
47 | { | 41 | { |
48 | get => (string)this.Fields[(int)WixPatchMetadataTupleFields.Value]; | 42 | get => (string)this.Fields[(int)WixPatchMetadataTupleFields.Value]; |