diff options
Diffstat (limited to 'src/wixext/Tuples/WixTouchFileTuple.cs')
-rw-r--r-- | src/wixext/Tuples/WixTouchFileTuple.cs | 18 |
1 files changed, 5 insertions, 13 deletions
diff --git a/src/wixext/Tuples/WixTouchFileTuple.cs b/src/wixext/Tuples/WixTouchFileTuple.cs index f87f396e..0a152dec 100644 --- a/src/wixext/Tuples/WixTouchFileTuple.cs +++ b/src/wixext/Tuples/WixTouchFileTuple.cs | |||
@@ -11,8 +11,7 @@ namespace WixToolset.Util | |||
11 | UtilTupleDefinitionType.WixTouchFile.ToString(), | 11 | UtilTupleDefinitionType.WixTouchFile.ToString(), |
12 | new[] | 12 | new[] |
13 | { | 13 | { |
14 | new IntermediateFieldDefinition(nameof(WixTouchFileTupleFields.WixTouchFile), IntermediateFieldType.String), | 14 | new IntermediateFieldDefinition(nameof(WixTouchFileTupleFields.ComponentRef), IntermediateFieldType.String), |
15 | new IntermediateFieldDefinition(nameof(WixTouchFileTupleFields.Component_), IntermediateFieldType.String), | ||
16 | new IntermediateFieldDefinition(nameof(WixTouchFileTupleFields.Path), IntermediateFieldType.String), | 15 | new IntermediateFieldDefinition(nameof(WixTouchFileTupleFields.Path), IntermediateFieldType.String), |
17 | new IntermediateFieldDefinition(nameof(WixTouchFileTupleFields.Attributes), IntermediateFieldType.Number), | 16 | new IntermediateFieldDefinition(nameof(WixTouchFileTupleFields.Attributes), IntermediateFieldType.Number), |
18 | }, | 17 | }, |
@@ -26,8 +25,7 @@ namespace WixToolset.Util.Tuples | |||
26 | 25 | ||
27 | public enum WixTouchFileTupleFields | 26 | public enum WixTouchFileTupleFields |
28 | { | 27 | { |
29 | WixTouchFile, | 28 | ComponentRef, |
30 | Component_, | ||
31 | Path, | 29 | Path, |
32 | Attributes, | 30 | Attributes, |
33 | } | 31 | } |
@@ -44,16 +42,10 @@ namespace WixToolset.Util.Tuples | |||
44 | 42 | ||
45 | public IntermediateField this[WixTouchFileTupleFields index] => this.Fields[(int)index]; | 43 | public IntermediateField this[WixTouchFileTupleFields index] => this.Fields[(int)index]; |
46 | 44 | ||
47 | public string WixTouchFile | 45 | public string ComponentRef |
48 | { | 46 | { |
49 | get => this.Fields[(int)WixTouchFileTupleFields.WixTouchFile].AsString(); | 47 | get => this.Fields[(int)WixTouchFileTupleFields.ComponentRef].AsString(); |
50 | set => this.Set((int)WixTouchFileTupleFields.WixTouchFile, value); | 48 | set => this.Set((int)WixTouchFileTupleFields.ComponentRef, value); |
51 | } | ||
52 | |||
53 | public string Component_ | ||
54 | { | ||
55 | get => this.Fields[(int)WixTouchFileTupleFields.Component_].AsString(); | ||
56 | set => this.Set((int)WixTouchFileTupleFields.Component_, value); | ||
57 | } | 49 | } |
58 | 50 | ||
59 | public string Path | 51 | public string Path |