aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Tuples/MsiShortcutPropertyTuple.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2019-05-22 00:19:41 -0700
committerRob Mensching <rob@firegiant.com>2019-05-23 15:43:40 -0700
commit54541ef517190f37d0625627b028834f0871a959 (patch)
tree91ff4d813d5013260c04854a9ad24812ccdffa08 /src/WixToolset.Data/Tuples/MsiShortcutPropertyTuple.cs
parent505fe69d85c90184cd37290ccb0120fec6074c20 (diff)
downloadwix-54541ef517190f37d0625627b028834f0871a959.tar.gz
wix-54541ef517190f37d0625627b028834f0871a959.tar.bz2
wix-54541ef517190f37d0625627b028834f0871a959.zip
Implement many more strong tuples
Also fixes several warnings.
Diffstat (limited to 'src/WixToolset.Data/Tuples/MsiShortcutPropertyTuple.cs')
-rw-r--r--src/WixToolset.Data/Tuples/MsiShortcutPropertyTuple.cs8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/WixToolset.Data/Tuples/MsiShortcutPropertyTuple.cs b/src/WixToolset.Data/Tuples/MsiShortcutPropertyTuple.cs
index 26ddbf4f..66567eb9 100644
--- a/src/WixToolset.Data/Tuples/MsiShortcutPropertyTuple.cs
+++ b/src/WixToolset.Data/Tuples/MsiShortcutPropertyTuple.cs
@@ -10,7 +10,6 @@ namespace WixToolset.Data
10 TupleDefinitionType.MsiShortcutProperty, 10 TupleDefinitionType.MsiShortcutProperty,
11 new[] 11 new[]
12 { 12 {
13 new IntermediateFieldDefinition(nameof(MsiShortcutPropertyTupleFields.MsiShortcutProperty), IntermediateFieldType.String),
14 new IntermediateFieldDefinition(nameof(MsiShortcutPropertyTupleFields.Shortcut_), IntermediateFieldType.String), 13 new IntermediateFieldDefinition(nameof(MsiShortcutPropertyTupleFields.Shortcut_), IntermediateFieldType.String),
15 new IntermediateFieldDefinition(nameof(MsiShortcutPropertyTupleFields.PropertyKey), IntermediateFieldType.String), 14 new IntermediateFieldDefinition(nameof(MsiShortcutPropertyTupleFields.PropertyKey), IntermediateFieldType.String),
16 new IntermediateFieldDefinition(nameof(MsiShortcutPropertyTupleFields.PropVariantValue), IntermediateFieldType.String), 15 new IntermediateFieldDefinition(nameof(MsiShortcutPropertyTupleFields.PropVariantValue), IntermediateFieldType.String),
@@ -23,7 +22,6 @@ namespace WixToolset.Data.Tuples
23{ 22{
24 public enum MsiShortcutPropertyTupleFields 23 public enum MsiShortcutPropertyTupleFields
25 { 24 {
26 MsiShortcutProperty,
27 Shortcut_, 25 Shortcut_,
28 PropertyKey, 26 PropertyKey,
29 PropVariantValue, 27 PropVariantValue,
@@ -41,12 +39,6 @@ namespace WixToolset.Data.Tuples
41 39
42 public IntermediateField this[MsiShortcutPropertyTupleFields index] => this.Fields[(int)index]; 40 public IntermediateField this[MsiShortcutPropertyTupleFields index] => this.Fields[(int)index];
43 41
44 public string MsiShortcutProperty
45 {
46 get => (string)this.Fields[(int)MsiShortcutPropertyTupleFields.MsiShortcutProperty];
47 set => this.Set((int)MsiShortcutPropertyTupleFields.MsiShortcutProperty, value);
48 }
49
50 public string Shortcut_ 42 public string Shortcut_
51 { 43 {
52 get => (string)this.Fields[(int)MsiShortcutPropertyTupleFields.Shortcut_]; 44 get => (string)this.Fields[(int)MsiShortcutPropertyTupleFields.Shortcut_];