aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Tuples/DirectoryTuple.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Data/Tuples/DirectoryTuple.cs')
-rw-r--r--src/WixToolset.Data/Tuples/DirectoryTuple.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/WixToolset.Data/Tuples/DirectoryTuple.cs b/src/WixToolset.Data/Tuples/DirectoryTuple.cs
index e36d6796..dc95f046 100644
--- a/src/WixToolset.Data/Tuples/DirectoryTuple.cs
+++ b/src/WixToolset.Data/Tuples/DirectoryTuple.cs
@@ -10,7 +10,7 @@ namespace WixToolset.Data
10 TupleDefinitionType.Directory, 10 TupleDefinitionType.Directory,
11 new[] 11 new[]
12 { 12 {
13 new IntermediateFieldDefinition(nameof(DirectoryTupleFields.Directory_Parent), IntermediateFieldType.String), 13 new IntermediateFieldDefinition(nameof(DirectoryTupleFields.ParentDirectoryRef), IntermediateFieldType.String),
14 new IntermediateFieldDefinition(nameof(DirectoryTupleFields.DefaultDir), IntermediateFieldType.String), 14 new IntermediateFieldDefinition(nameof(DirectoryTupleFields.DefaultDir), IntermediateFieldType.String),
15 new IntermediateFieldDefinition(nameof(DirectoryTupleFields.ComponentGuidGenerationSeed), IntermediateFieldType.String), 15 new IntermediateFieldDefinition(nameof(DirectoryTupleFields.ComponentGuidGenerationSeed), IntermediateFieldType.String),
16 }, 16 },
@@ -22,7 +22,7 @@ namespace WixToolset.Data.Tuples
22{ 22{
23 public enum DirectoryTupleFields 23 public enum DirectoryTupleFields
24 { 24 {
25 Directory_Parent, 25 ParentDirectoryRef,
26 DefaultDir, 26 DefaultDir,
27 ComponentGuidGenerationSeed, 27 ComponentGuidGenerationSeed,
28 } 28 }
@@ -39,10 +39,10 @@ namespace WixToolset.Data.Tuples
39 39
40 public IntermediateField this[DirectoryTupleFields index] => this.Fields[(int)index]; 40 public IntermediateField this[DirectoryTupleFields index] => this.Fields[(int)index];
41 41
42 public string Directory_Parent 42 public string ParentDirectoryRef
43 { 43 {
44 get => (string)this.Fields[(int)DirectoryTupleFields.Directory_Parent]; 44 get => (string)this.Fields[(int)DirectoryTupleFields.ParentDirectoryRef];
45 set => this.Set((int)DirectoryTupleFields.Directory_Parent, value); 45 set => this.Set((int)DirectoryTupleFields.ParentDirectoryRef, value);
46 } 46 }
47 47
48 public string DefaultDir 48 public string DefaultDir