diff options
Diffstat (limited to 'src/WixToolset.Data/Tuples/CreateFolderTuple.cs')
| -rw-r--r-- | src/WixToolset.Data/Tuples/CreateFolderTuple.cs | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/WixToolset.Data/Tuples/CreateFolderTuple.cs b/src/WixToolset.Data/Tuples/CreateFolderTuple.cs index 585f274c..d9d4763e 100644 --- a/src/WixToolset.Data/Tuples/CreateFolderTuple.cs +++ b/src/WixToolset.Data/Tuples/CreateFolderTuple.cs | |||
| @@ -10,8 +10,8 @@ namespace WixToolset.Data | |||
| 10 | TupleDefinitionType.CreateFolder, | 10 | TupleDefinitionType.CreateFolder, |
| 11 | new[] | 11 | new[] |
| 12 | { | 12 | { |
| 13 | new IntermediateFieldDefinition(nameof(CreateFolderTupleFields.Directory_), IntermediateFieldType.String), | 13 | new IntermediateFieldDefinition(nameof(CreateFolderTupleFields.DirectoryRef), IntermediateFieldType.String), |
| 14 | new IntermediateFieldDefinition(nameof(CreateFolderTupleFields.Component_), IntermediateFieldType.String), | 14 | new IntermediateFieldDefinition(nameof(CreateFolderTupleFields.ComponentRef), IntermediateFieldType.String), |
| 15 | }, | 15 | }, |
| 16 | typeof(CreateFolderTuple)); | 16 | typeof(CreateFolderTuple)); |
| 17 | } | 17 | } |
| @@ -21,8 +21,8 @@ namespace WixToolset.Data.Tuples | |||
| 21 | { | 21 | { |
| 22 | public enum CreateFolderTupleFields | 22 | public enum CreateFolderTupleFields |
| 23 | { | 23 | { |
| 24 | Directory_, | 24 | DirectoryRef, |
| 25 | Component_, | 25 | ComponentRef, |
| 26 | } | 26 | } |
| 27 | 27 | ||
| 28 | public class CreateFolderTuple : IntermediateTuple | 28 | public class CreateFolderTuple : IntermediateTuple |
| @@ -37,16 +37,16 @@ namespace WixToolset.Data.Tuples | |||
| 37 | 37 | ||
| 38 | public IntermediateField this[CreateFolderTupleFields index] => this.Fields[(int)index]; | 38 | public IntermediateField this[CreateFolderTupleFields index] => this.Fields[(int)index]; |
| 39 | 39 | ||
| 40 | public string Directory_ | 40 | public string DirectoryRef |
| 41 | { | 41 | { |
| 42 | get => (string)this.Fields[(int)CreateFolderTupleFields.Directory_]; | 42 | get => (string)this.Fields[(int)CreateFolderTupleFields.DirectoryRef]; |
| 43 | set => this.Set((int)CreateFolderTupleFields.Directory_, value); | 43 | set => this.Set((int)CreateFolderTupleFields.DirectoryRef, value); |
| 44 | } | 44 | } |
| 45 | 45 | ||
| 46 | public string Component_ | 46 | public string ComponentRef |
| 47 | { | 47 | { |
| 48 | get => (string)this.Fields[(int)CreateFolderTupleFields.Component_]; | 48 | get => (string)this.Fields[(int)CreateFolderTupleFields.ComponentRef]; |
| 49 | set => this.Set((int)CreateFolderTupleFields.Component_, value); | 49 | set => this.Set((int)CreateFolderTupleFields.ComponentRef, value); |
| 50 | } | 50 | } |
| 51 | } | 51 | } |
| 52 | } \ No newline at end of file | 52 | } \ No newline at end of file |
