diff options
Diffstat (limited to 'src/wixext/Tuples/HelpFileTuple.cs')
-rw-r--r-- | src/wixext/Tuples/HelpFileTuple.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wixext/Tuples/HelpFileTuple.cs b/src/wixext/Tuples/HelpFileTuple.cs index 9ea5e8e3..49d3bc44 100644 --- a/src/wixext/Tuples/HelpFileTuple.cs +++ b/src/wixext/Tuples/HelpFileTuple.cs | |||
@@ -56,9 +56,9 @@ namespace WixToolset.VisualStudio.Tuples | |||
56 | set => this.Set((int)HelpFileTupleFields.HelpFileName, value); | 56 | set => this.Set((int)HelpFileTupleFields.HelpFileName, value); |
57 | } | 57 | } |
58 | 58 | ||
59 | public int LangID | 59 | public int? LangID |
60 | { | 60 | { |
61 | get => this.Fields[(int)HelpFileTupleFields.LangID].AsNumber(); | 61 | get => this.Fields[(int)HelpFileTupleFields.LangID].AsNullableNumber(); |
62 | set => this.Set((int)HelpFileTupleFields.LangID, value); | 62 | set => this.Set((int)HelpFileTupleFields.LangID, value); |
63 | } | 63 | } |
64 | 64 | ||