diff options
Diffstat (limited to 'src/WixToolset.Data/Tuples/WixFileSearchTuple.cs')
| -rw-r--r-- | src/WixToolset.Data/Tuples/WixFileSearchTuple.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/WixToolset.Data/Tuples/WixFileSearchTuple.cs b/src/WixToolset.Data/Tuples/WixFileSearchTuple.cs index a5da5f2b..27c5cc83 100644 --- a/src/WixToolset.Data/Tuples/WixFileSearchTuple.cs +++ b/src/WixToolset.Data/Tuples/WixFileSearchTuple.cs | |||
| @@ -10,7 +10,7 @@ namespace WixToolset.Data | |||
| 10 | TupleDefinitionType.WixFileSearch, | 10 | TupleDefinitionType.WixFileSearch, |
| 11 | new[] | 11 | new[] |
| 12 | { | 12 | { |
| 13 | new IntermediateFieldDefinition(nameof(WixFileSearchTupleFields.WixSearch_), IntermediateFieldType.String), | 13 | new IntermediateFieldDefinition(nameof(WixFileSearchTupleFields.WixSearchRef), IntermediateFieldType.String), |
| 14 | new IntermediateFieldDefinition(nameof(WixFileSearchTupleFields.Path), IntermediateFieldType.String), | 14 | new IntermediateFieldDefinition(nameof(WixFileSearchTupleFields.Path), IntermediateFieldType.String), |
| 15 | new IntermediateFieldDefinition(nameof(WixFileSearchTupleFields.MinVersion), IntermediateFieldType.String), | 15 | new IntermediateFieldDefinition(nameof(WixFileSearchTupleFields.MinVersion), IntermediateFieldType.String), |
| 16 | new IntermediateFieldDefinition(nameof(WixFileSearchTupleFields.MaxVersion), IntermediateFieldType.String), | 16 | new IntermediateFieldDefinition(nameof(WixFileSearchTupleFields.MaxVersion), IntermediateFieldType.String), |
| @@ -29,7 +29,7 @@ namespace WixToolset.Data.Tuples | |||
| 29 | { | 29 | { |
| 30 | public enum WixFileSearchTupleFields | 30 | public enum WixFileSearchTupleFields |
| 31 | { | 31 | { |
| 32 | WixSearch_, | 32 | WixSearchRef, |
| 33 | Path, | 33 | Path, |
| 34 | MinVersion, | 34 | MinVersion, |
| 35 | MaxVersion, | 35 | MaxVersion, |
| @@ -53,10 +53,10 @@ namespace WixToolset.Data.Tuples | |||
| 53 | 53 | ||
| 54 | public IntermediateField this[WixFileSearchTupleFields index] => this.Fields[(int)index]; | 54 | public IntermediateField this[WixFileSearchTupleFields index] => this.Fields[(int)index]; |
| 55 | 55 | ||
| 56 | public string WixSearch_ | 56 | public string WixSearchRef |
| 57 | { | 57 | { |
| 58 | get => (string)this.Fields[(int)WixFileSearchTupleFields.WixSearch_]; | 58 | get => (string)this.Fields[(int)WixFileSearchTupleFields.WixSearchRef]; |
| 59 | set => this.Set((int)WixFileSearchTupleFields.WixSearch_, value); | 59 | set => this.Set((int)WixFileSearchTupleFields.WixSearchRef, value); |
| 60 | } | 60 | } |
| 61 | 61 | ||
| 62 | public string Path | 62 | public string Path |
