aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Tuples/RemoveFileTuple.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Data/Tuples/RemoveFileTuple.cs')
-rw-r--r--src/WixToolset.Data/Tuples/RemoveFileTuple.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/WixToolset.Data/Tuples/RemoveFileTuple.cs b/src/WixToolset.Data/Tuples/RemoveFileTuple.cs
index 1860172f..1f370ae9 100644
--- a/src/WixToolset.Data/Tuples/RemoveFileTuple.cs
+++ b/src/WixToolset.Data/Tuples/RemoveFileTuple.cs
@@ -45,31 +45,31 @@ namespace WixToolset.Data.Tuples
45 45
46 public string FileKey 46 public string FileKey
47 { 47 {
48 get => (string)this.Fields[(int)RemoveFileTupleFields.FileKey]?.Value; 48 get => (string)this.Fields[(int)RemoveFileTupleFields.FileKey];
49 set => this.Set((int)RemoveFileTupleFields.FileKey, value); 49 set => this.Set((int)RemoveFileTupleFields.FileKey, value);
50 } 50 }
51 51
52 public string Component_ 52 public string Component_
53 { 53 {
54 get => (string)this.Fields[(int)RemoveFileTupleFields.Component_]?.Value; 54 get => (string)this.Fields[(int)RemoveFileTupleFields.Component_];
55 set => this.Set((int)RemoveFileTupleFields.Component_, value); 55 set => this.Set((int)RemoveFileTupleFields.Component_, value);
56 } 56 }
57 57
58 public string FileName 58 public string FileName
59 { 59 {
60 get => (string)this.Fields[(int)RemoveFileTupleFields.FileName]?.Value; 60 get => (string)this.Fields[(int)RemoveFileTupleFields.FileName];
61 set => this.Set((int)RemoveFileTupleFields.FileName, value); 61 set => this.Set((int)RemoveFileTupleFields.FileName, value);
62 } 62 }
63 63
64 public string DirProperty 64 public string DirProperty
65 { 65 {
66 get => (string)this.Fields[(int)RemoveFileTupleFields.DirProperty]?.Value; 66 get => (string)this.Fields[(int)RemoveFileTupleFields.DirProperty];
67 set => this.Set((int)RemoveFileTupleFields.DirProperty, value); 67 set => this.Set((int)RemoveFileTupleFields.DirProperty, value);
68 } 68 }
69 69
70 public int InstallMode 70 public int InstallMode
71 { 71 {
72 get => (int)this.Fields[(int)RemoveFileTupleFields.InstallMode]?.Value; 72 get => (int)this.Fields[(int)RemoveFileTupleFields.InstallMode];
73 set => this.Set((int)RemoveFileTupleFields.InstallMode, value); 73 set => this.Set((int)RemoveFileTupleFields.InstallMode, value);
74 } 74 }
75 } 75 }