diff options
| author | Rob Mensching <rob@firegiant.com> | 2019-05-22 00:19:41 -0700 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2019-05-23 15:43:40 -0700 |
| commit | 54541ef517190f37d0625627b028834f0871a959 (patch) | |
| tree | 91ff4d813d5013260c04854a9ad24812ccdffa08 /src/WixToolset.Data/Tuples/WixDeltaPatchFileTuple.cs | |
| parent | 505fe69d85c90184cd37290ccb0120fec6074c20 (diff) | |
| download | wix-54541ef517190f37d0625627b028834f0871a959.tar.gz wix-54541ef517190f37d0625627b028834f0871a959.tar.bz2 wix-54541ef517190f37d0625627b028834f0871a959.zip | |
Implement many more strong tuples
Also fixes several warnings.
Diffstat (limited to 'src/WixToolset.Data/Tuples/WixDeltaPatchFileTuple.cs')
| -rw-r--r-- | src/WixToolset.Data/Tuples/WixDeltaPatchFileTuple.cs | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/WixToolset.Data/Tuples/WixDeltaPatchFileTuple.cs b/src/WixToolset.Data/Tuples/WixDeltaPatchFileTuple.cs index a8e191df..48d0a96c 100644 --- a/src/WixToolset.Data/Tuples/WixDeltaPatchFileTuple.cs +++ b/src/WixToolset.Data/Tuples/WixDeltaPatchFileTuple.cs | |||
| @@ -10,7 +10,6 @@ namespace WixToolset.Data | |||
| 10 | TupleDefinitionType.WixDeltaPatchFile, | 10 | TupleDefinitionType.WixDeltaPatchFile, |
| 11 | new[] | 11 | new[] |
| 12 | { | 12 | { |
| 13 | new IntermediateFieldDefinition(nameof(WixDeltaPatchFileTupleFields.File_), IntermediateFieldType.String), | ||
| 14 | new IntermediateFieldDefinition(nameof(WixDeltaPatchFileTupleFields.RetainLengths), IntermediateFieldType.String), | 13 | new IntermediateFieldDefinition(nameof(WixDeltaPatchFileTupleFields.RetainLengths), IntermediateFieldType.String), |
| 15 | new IntermediateFieldDefinition(nameof(WixDeltaPatchFileTupleFields.IgnoreOffsets), IntermediateFieldType.String), | 14 | new IntermediateFieldDefinition(nameof(WixDeltaPatchFileTupleFields.IgnoreOffsets), IntermediateFieldType.String), |
| 16 | new IntermediateFieldDefinition(nameof(WixDeltaPatchFileTupleFields.IgnoreLengths), IntermediateFieldType.String), | 15 | new IntermediateFieldDefinition(nameof(WixDeltaPatchFileTupleFields.IgnoreLengths), IntermediateFieldType.String), |
| @@ -25,7 +24,6 @@ namespace WixToolset.Data.Tuples | |||
| 25 | { | 24 | { |
| 26 | public enum WixDeltaPatchFileTupleFields | 25 | public enum WixDeltaPatchFileTupleFields |
| 27 | { | 26 | { |
| 28 | File_, | ||
| 29 | RetainLengths, | 27 | RetainLengths, |
| 30 | IgnoreOffsets, | 28 | IgnoreOffsets, |
| 31 | IgnoreLengths, | 29 | IgnoreLengths, |
| @@ -45,12 +43,6 @@ namespace WixToolset.Data.Tuples | |||
| 45 | 43 | ||
| 46 | public IntermediateField this[WixDeltaPatchFileTupleFields index] => this.Fields[(int)index]; | 44 | public IntermediateField this[WixDeltaPatchFileTupleFields index] => this.Fields[(int)index]; |
| 47 | 45 | ||
| 48 | public string File_ | ||
| 49 | { | ||
| 50 | get => (string)this.Fields[(int)WixDeltaPatchFileTupleFields.File_]; | ||
| 51 | set => this.Set((int)WixDeltaPatchFileTupleFields.File_, value); | ||
| 52 | } | ||
| 53 | |||
| 54 | public string RetainLengths | 46 | public string RetainLengths |
| 55 | { | 47 | { |
| 56 | get => (string)this.Fields[(int)WixDeltaPatchFileTupleFields.RetainLengths]; | 48 | get => (string)this.Fields[(int)WixDeltaPatchFileTupleFields.RetainLengths]; |
