aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Tuples/CreateFolderTuple.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/WixToolset.Data/Tuples/CreateFolderTuple.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/WixToolset.Data/Tuples/CreateFolderTuple.cs b/src/WixToolset.Data/Tuples/CreateFolderTuple.cs
index 05b50a8b..585f274c 100644
--- a/src/WixToolset.Data/Tuples/CreateFolderTuple.cs
+++ b/src/WixToolset.Data/Tuples/CreateFolderTuple.cs
@@ -39,13 +39,13 @@ namespace WixToolset.Data.Tuples
39 39
40 public string Directory_ 40 public string Directory_
41 { 41 {
42 get => (string)this.Fields[(int)CreateFolderTupleFields.Directory_]?.Value; 42 get => (string)this.Fields[(int)CreateFolderTupleFields.Directory_];
43 set => this.Set((int)CreateFolderTupleFields.Directory_, value); 43 set => this.Set((int)CreateFolderTupleFields.Directory_, value);
44 } 44 }
45 45
46 public string Component_ 46 public string Component_
47 { 47 {
48 get => (string)this.Fields[(int)CreateFolderTupleFields.Component_]?.Value; 48 get => (string)this.Fields[(int)CreateFolderTupleFields.Component_];
49 set => this.Set((int)CreateFolderTupleFields.Component_, value); 49 set => this.Set((int)CreateFolderTupleFields.Component_, value);
50 } 50 }
51 } 51 }