You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: RELEASE_NOTES.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,6 @@
1
+
### 6.2.2
2
+
* Fix default `programName` when invoking via a wrapper such as `dotnet.exe`[#233](https://github.com/fsprojects/Argu/pull/233)
3
+
1
4
### 6.2.1
2
5
* Fix `ParseResults.ProgramName` - make it public (cut and paste error in [#229](https://github.com/fsprojects/Argu/pull/229)) [#231](https://github.com/fsprojects/Argu/pull/231)
Copy file name to clipboardExpand all lines: src/Argu/ArgumentParser.fs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -99,7 +99,7 @@ and [<Sealed; NoEquality; NoComparison; AutoSerializable(false)>]
99
99
/// <summary>
100
100
/// Creates a new parser instance based on supplied F# union template.
101
101
/// </summary>
102
-
/// <param name="programName">Program identifier, e.g. 'cat'. Defaults to the current executable name.</param>
102
+
/// <param name="programName">Program identifier, e.g. 'cat'. Defaults to the current running executable per <c>Assembly.GetEntryAssembly()</c>.</param>
103
103
/// <param name="helpTextMessage">Message that will be displayed at the top of the help text.</param>
104
104
/// <param name="usageStringCharacterWidth">Text width used when formatting the usage string. Defaults to 80 chars.</param>
105
105
/// <param name="errorHandler">The implementation of IExiter used for error handling. Exception is default.</param>
0 commit comments