Skip to content

Commit

Permalink
Update O21.CommandLine/Arguments.fs
Browse files Browse the repository at this point in the history
Co-authored-by: Friedrich von Never <friedrich@fornever.me>
  • Loading branch information
evgTSV and ForNeVeR committed Mar 9, 2024
1 parent 0543f00 commit a78deaf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions O21.CommandLine/Arguments.fs
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ module Arguments =
[<Option('o', "out", HelpText = "Directory where resources will be stored")>]
member this.outputDirectory: string = outputDirectory

[<Verb("helpFile", HelpText = "?")>] // TODO[#141]: Define help text
[<Verb("helpFile", HelpText = "Parse a WinHelp file and extract all the information from it.")>]
type HelpFile(inputFilePath:string, outputDirectory:string, showHelpInfo:bool) =
inherit BaseCommand(showHelpInfo)
[<Value(0, HelpText = "?")>] // TODO[#141]: Define help text
[<Value(0, HelpText = "Path to the input .hlp file.")>]
member this.inputFilePath: string = inputFilePath
[<Option('o', "out", HelpText = "?")>] // TODO[#141]: Define help text
[<Option('o', "out", HelpText = "Path to the output resource directory.")>]
member this.outputDirectory: string = outputDirectory

0 comments on commit a78deaf

Please sign in to comment.