diff options
Diffstat (limited to 'src/WixToolset.Data/Tuples')
| -rw-r--r-- | src/WixToolset.Data/Tuples/WixFragmentTuple.cs | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/src/WixToolset.Data/Tuples/WixFragmentTuple.cs b/src/WixToolset.Data/Tuples/WixFragmentTuple.cs index fd4c309d..fedfa872 100644 --- a/src/WixToolset.Data/Tuples/WixFragmentTuple.cs +++ b/src/WixToolset.Data/Tuples/WixFragmentTuple.cs | |||
| @@ -8,10 +8,7 @@ namespace WixToolset.Data | |||
| 8 | { | 8 | { |
| 9 | public static readonly IntermediateTupleDefinition WixFragment = new IntermediateTupleDefinition( | 9 | public static readonly IntermediateTupleDefinition WixFragment = new IntermediateTupleDefinition( |
| 10 | TupleDefinitionType.WixFragment, | 10 | TupleDefinitionType.WixFragment, |
| 11 | new[] | 11 | new IntermediateFieldDefinition[0], |
| 12 | { | ||
| 13 | new IntermediateFieldDefinition(nameof(WixFragmentTupleFields.WixFragment), IntermediateFieldType.String), | ||
| 14 | }, | ||
| 15 | typeof(WixFragmentTuple)); | 12 | typeof(WixFragmentTuple)); |
| 16 | } | 13 | } |
| 17 | } | 14 | } |
| @@ -20,7 +17,6 @@ namespace WixToolset.Data.Tuples | |||
| 20 | { | 17 | { |
| 21 | public enum WixFragmentTupleFields | 18 | public enum WixFragmentTupleFields |
| 22 | { | 19 | { |
| 23 | WixFragment, | ||
| 24 | } | 20 | } |
| 25 | 21 | ||
| 26 | public class WixFragmentTuple : IntermediateTuple | 22 | public class WixFragmentTuple : IntermediateTuple |
| @@ -34,11 +30,5 @@ namespace WixToolset.Data.Tuples | |||
| 34 | } | 30 | } |
| 35 | 31 | ||
| 36 | public IntermediateField this[WixFragmentTupleFields index] => this.Fields[(int)index]; | 32 | public IntermediateField this[WixFragmentTupleFields index] => this.Fields[(int)index]; |
| 37 | |||
| 38 | public string WixFragment | ||
| 39 | { | ||
| 40 | get => (string)this.Fields[(int)WixFragmentTupleFields.WixFragment]; | ||
| 41 | set => this.Set((int)WixFragmentTupleFields.WixFragment, value); | ||
| 42 | } | ||
| 43 | } | 33 | } |
| 44 | } \ No newline at end of file | 34 | } \ No newline at end of file |
