aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Tuples/ShortcutTuple.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Data/Tuples/ShortcutTuple.cs')
-rw-r--r--src/WixToolset.Data/Tuples/ShortcutTuple.cs20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/WixToolset.Data/Tuples/ShortcutTuple.cs b/src/WixToolset.Data/Tuples/ShortcutTuple.cs
index b7f13416..b58bfd8e 100644
--- a/src/WixToolset.Data/Tuples/ShortcutTuple.cs
+++ b/src/WixToolset.Data/Tuples/ShortcutTuple.cs
@@ -72,37 +72,37 @@ namespace WixToolset.Data.Tuples
72 72
73 public string Directory_ 73 public string Directory_
74 { 74 {
75 get => (string)this.Fields[(int)ShortcutTupleFields.Directory_]?.Value; 75 get => (string)this.Fields[(int)ShortcutTupleFields.Directory_];
76 set => this.Set((int)ShortcutTupleFields.Directory_, value); 76 set => this.Set((int)ShortcutTupleFields.Directory_, value);
77 } 77 }
78 78
79 public string Name 79 public string Name
80 { 80 {
81 get => (string)this.Fields[(int)ShortcutTupleFields.Name]?.Value; 81 get => (string)this.Fields[(int)ShortcutTupleFields.Name];
82 set => this.Set((int)ShortcutTupleFields.Name, value); 82 set => this.Set((int)ShortcutTupleFields.Name, value);
83 } 83 }
84 84
85 public string Component_ 85 public string Component_
86 { 86 {
87 get => (string)this.Fields[(int)ShortcutTupleFields.Component_]?.Value; 87 get => (string)this.Fields[(int)ShortcutTupleFields.Component_];
88 set => this.Set((int)ShortcutTupleFields.Component_, value); 88 set => this.Set((int)ShortcutTupleFields.Component_, value);
89 } 89 }
90 90
91 public string Target 91 public string Target
92 { 92 {
93 get => (string)this.Fields[(int)ShortcutTupleFields.Target]?.Value; 93 get => (string)this.Fields[(int)ShortcutTupleFields.Target];
94 set => this.Set((int)ShortcutTupleFields.Target, value); 94 set => this.Set((int)ShortcutTupleFields.Target, value);
95 } 95 }
96 96
97 public string Arguments 97 public string Arguments
98 { 98 {
99 get => (string)this.Fields[(int)ShortcutTupleFields.Arguments]?.Value; 99 get => (string)this.Fields[(int)ShortcutTupleFields.Arguments];
100 set => this.Set((int)ShortcutTupleFields.Arguments, value); 100 set => this.Set((int)ShortcutTupleFields.Arguments, value);
101 } 101 }
102 102
103 public string Description 103 public string Description
104 { 104 {
105 get => (string)this.Fields[(int)ShortcutTupleFields.Description]?.Value; 105 get => (string)this.Fields[(int)ShortcutTupleFields.Description];
106 set => this.Set((int)ShortcutTupleFields.Description, value); 106 set => this.Set((int)ShortcutTupleFields.Description, value);
107 } 107 }
108 108
@@ -114,7 +114,7 @@ namespace WixToolset.Data.Tuples
114 114
115 public string Icon_ 115 public string Icon_
116 { 116 {
117 get => (string)this.Fields[(int)ShortcutTupleFields.Icon_]?.Value; 117 get => (string)this.Fields[(int)ShortcutTupleFields.Icon_];
118 set => this.Set((int)ShortcutTupleFields.Icon_, value); 118 set => this.Set((int)ShortcutTupleFields.Icon_, value);
119 } 119 }
120 120
@@ -132,13 +132,13 @@ namespace WixToolset.Data.Tuples
132 132
133 public string WorkingDirectory 133 public string WorkingDirectory
134 { 134 {
135 get => (string)this.Fields[(int)ShortcutTupleFields.WkDir]?.Value; 135 get => (string)this.Fields[(int)ShortcutTupleFields.WkDir];
136 set => this.Set((int)ShortcutTupleFields.WkDir, value); 136 set => this.Set((int)ShortcutTupleFields.WkDir, value);
137 } 137 }
138 138
139 public string DisplayResourceDll 139 public string DisplayResourceDll
140 { 140 {
141 get => (string)this.Fields[(int)ShortcutTupleFields.DisplayResourceDLL]?.Value; 141 get => (string)this.Fields[(int)ShortcutTupleFields.DisplayResourceDLL];
142 set => this.Set((int)ShortcutTupleFields.DisplayResourceDLL, value); 142 set => this.Set((int)ShortcutTupleFields.DisplayResourceDLL, value);
143 } 143 }
144 144
@@ -150,7 +150,7 @@ namespace WixToolset.Data.Tuples
150 150
151 public string DescriptionResourceDll 151 public string DescriptionResourceDll
152 { 152 {
153 get => (string)this.Fields[(int)ShortcutTupleFields.DescriptionResourceDLL]?.Value; 153 get => (string)this.Fields[(int)ShortcutTupleFields.DescriptionResourceDLL];
154 set => this.Set((int)ShortcutTupleFields.DescriptionResourceDLL, value); 154 set => this.Set((int)ShortcutTupleFields.DescriptionResourceDLL, value);
155 } 155 }
156 156