aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Tuples/MsiShortcutPropertyTuple.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2019-05-22 14:45:33 -0700
committerRob Mensching <rob@firegiant.com>2019-05-23 15:43:40 -0700
commitb36433623fcac28cf620868430d49bc36fca2963 (patch)
tree08f26c45c3d80ce665eade49ee7b542bf71da81c /src/WixToolset.Data/Tuples/MsiShortcutPropertyTuple.cs
parent109ee5a02f9cec4775697b43655674fc70f4127a (diff)
downloadwix-b36433623fcac28cf620868430d49bc36fca2963.tar.gz
wix-b36433623fcac28cf620868430d49bc36fca2963.tar.bz2
wix-b36433623fcac28cf620868430d49bc36fca2963.zip
Use "Ref" instead of "_" as the reference convention
Diffstat (limited to 'src/WixToolset.Data/Tuples/MsiShortcutPropertyTuple.cs')
-rw-r--r--src/WixToolset.Data/Tuples/MsiShortcutPropertyTuple.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/WixToolset.Data/Tuples/MsiShortcutPropertyTuple.cs b/src/WixToolset.Data/Tuples/MsiShortcutPropertyTuple.cs
index 66567eb9..290f6f14 100644
--- a/src/WixToolset.Data/Tuples/MsiShortcutPropertyTuple.cs
+++ b/src/WixToolset.Data/Tuples/MsiShortcutPropertyTuple.cs
@@ -10,7 +10,7 @@ namespace WixToolset.Data
10 TupleDefinitionType.MsiShortcutProperty, 10 TupleDefinitionType.MsiShortcutProperty,
11 new[] 11 new[]
12 { 12 {
13 new IntermediateFieldDefinition(nameof(MsiShortcutPropertyTupleFields.Shortcut_), IntermediateFieldType.String), 13 new IntermediateFieldDefinition(nameof(MsiShortcutPropertyTupleFields.ShortcutRef), IntermediateFieldType.String),
14 new IntermediateFieldDefinition(nameof(MsiShortcutPropertyTupleFields.PropertyKey), IntermediateFieldType.String), 14 new IntermediateFieldDefinition(nameof(MsiShortcutPropertyTupleFields.PropertyKey), IntermediateFieldType.String),
15 new IntermediateFieldDefinition(nameof(MsiShortcutPropertyTupleFields.PropVariantValue), IntermediateFieldType.String), 15 new IntermediateFieldDefinition(nameof(MsiShortcutPropertyTupleFields.PropVariantValue), IntermediateFieldType.String),
16 }, 16 },
@@ -22,7 +22,7 @@ namespace WixToolset.Data.Tuples
22{ 22{
23 public enum MsiShortcutPropertyTupleFields 23 public enum MsiShortcutPropertyTupleFields
24 { 24 {
25 Shortcut_, 25 ShortcutRef,
26 PropertyKey, 26 PropertyKey,
27 PropVariantValue, 27 PropVariantValue,
28 } 28 }
@@ -39,10 +39,10 @@ namespace WixToolset.Data.Tuples
39 39
40 public IntermediateField this[MsiShortcutPropertyTupleFields index] => this.Fields[(int)index]; 40 public IntermediateField this[MsiShortcutPropertyTupleFields index] => this.Fields[(int)index];
41 41
42 public string Shortcut_ 42 public string ShortcutRef
43 { 43 {
44 get => (string)this.Fields[(int)MsiShortcutPropertyTupleFields.Shortcut_]; 44 get => (string)this.Fields[(int)MsiShortcutPropertyTupleFields.ShortcutRef];
45 set => this.Set((int)MsiShortcutPropertyTupleFields.Shortcut_, value); 45 set => this.Set((int)MsiShortcutPropertyTupleFields.ShortcutRef, value);
46 } 46 }
47 47
48 public string PropertyKey 48 public string PropertyKey