aboutsummaryrefslogtreecommitdiff
path: root/src/wixext/Tuples/WixInternetShortcutTuple.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/wixext/Tuples/WixInternetShortcutTuple.cs')
-rw-r--r--src/wixext/Tuples/WixInternetShortcutTuple.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wixext/Tuples/WixInternetShortcutTuple.cs b/src/wixext/Tuples/WixInternetShortcutTuple.cs
index 935d9462..b0dff121 100644
--- a/src/wixext/Tuples/WixInternetShortcutTuple.cs
+++ b/src/wixext/Tuples/WixInternetShortcutTuple.cs
@@ -86,9 +86,9 @@ namespace WixToolset.Util.Tuples
86 set => this.Set((int)WixInternetShortcutTupleFields.IconFile, value); 86 set => this.Set((int)WixInternetShortcutTupleFields.IconFile, value);
87 } 87 }
88 88
89 public int IconIndex 89 public int? IconIndex
90 { 90 {
91 get => this.Fields[(int)WixInternetShortcutTupleFields.IconIndex].AsNumber(); 91 get => this.Fields[(int)WixInternetShortcutTupleFields.IconIndex].AsNullableNumber();
92 set => this.Set((int)WixInternetShortcutTupleFields.IconIndex, value); 92 set => this.Set((int)WixInternetShortcutTupleFields.IconIndex, value);
93 } 93 }
94 } 94 }