diff options
Diffstat (limited to 'src/WixToolset.Data/Tuples/ShortcutTuple.cs')
-rw-r--r-- | src/WixToolset.Data/Tuples/ShortcutTuple.cs | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/WixToolset.Data/Tuples/ShortcutTuple.cs b/src/WixToolset.Data/Tuples/ShortcutTuple.cs index c2b9e63f..66b98287 100644 --- a/src/WixToolset.Data/Tuples/ShortcutTuple.cs +++ b/src/WixToolset.Data/Tuples/ShortcutTuple.cs | |||
@@ -12,6 +12,7 @@ namespace WixToolset.Data | |||
12 | { | 12 | { |
13 | new IntermediateFieldDefinition(nameof(ShortcutTupleFields.DirectoryRef), IntermediateFieldType.String), | 13 | new IntermediateFieldDefinition(nameof(ShortcutTupleFields.DirectoryRef), IntermediateFieldType.String), |
14 | new IntermediateFieldDefinition(nameof(ShortcutTupleFields.Name), IntermediateFieldType.String), | 14 | new IntermediateFieldDefinition(nameof(ShortcutTupleFields.Name), IntermediateFieldType.String), |
15 | new IntermediateFieldDefinition(nameof(ShortcutTupleFields.ShortName), IntermediateFieldType.String), | ||
15 | new IntermediateFieldDefinition(nameof(ShortcutTupleFields.ComponentRef), IntermediateFieldType.String), | 16 | new IntermediateFieldDefinition(nameof(ShortcutTupleFields.ComponentRef), IntermediateFieldType.String), |
16 | new IntermediateFieldDefinition(nameof(ShortcutTupleFields.Target), IntermediateFieldType.String), | 17 | new IntermediateFieldDefinition(nameof(ShortcutTupleFields.Target), IntermediateFieldType.String), |
17 | new IntermediateFieldDefinition(nameof(ShortcutTupleFields.Arguments), IntermediateFieldType.String), | 18 | new IntermediateFieldDefinition(nameof(ShortcutTupleFields.Arguments), IntermediateFieldType.String), |
@@ -36,6 +37,7 @@ namespace WixToolset.Data.Tuples | |||
36 | { | 37 | { |
37 | DirectoryRef, | 38 | DirectoryRef, |
38 | Name, | 39 | Name, |
40 | ShortName, | ||
39 | ComponentRef, | 41 | ComponentRef, |
40 | Target, | 42 | Target, |
41 | Arguments, | 43 | Arguments, |
@@ -82,6 +84,12 @@ namespace WixToolset.Data.Tuples | |||
82 | set => this.Set((int)ShortcutTupleFields.Name, value); | 84 | set => this.Set((int)ShortcutTupleFields.Name, value); |
83 | } | 85 | } |
84 | 86 | ||
87 | public string ShortName | ||
88 | { | ||
89 | get => (string)this.Fields[(int)ShortcutTupleFields.ShortName]; | ||
90 | set => this.Set((int)ShortcutTupleFields.ShortName, value); | ||
91 | } | ||
92 | |||
85 | public string ComponentRef | 93 | public string ComponentRef |
86 | { | 94 | { |
87 | get => (string)this.Fields[(int)ShortcutTupleFields.ComponentRef]; | 95 | get => (string)this.Fields[(int)ShortcutTupleFields.ComponentRef]; |
@@ -160,4 +168,4 @@ namespace WixToolset.Data.Tuples | |||
160 | set => this.Set((int)ShortcutTupleFields.DescriptionResourceId, value); | 168 | set => this.Set((int)ShortcutTupleFields.DescriptionResourceId, value); |
161 | } | 169 | } |
162 | } | 170 | } |
163 | } \ No newline at end of file | 171 | } |