Skip to content

Commit

Permalink
Updating PicoArgs to v2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lookbusy1344 committed Aug 30, 2024
1 parent 05b7643 commit 9048eaa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions PicoArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ namespace PicoArgs_dotnet;
/* PICOARGS_DOTNET - a tiny command line argument parser for .NET
https://github.com/lookbusy1344/PicoArgs-dotnet
Version 1.6.1 - 17 Jul 2024
Version 2.0.0 - 30 Aug 2024
Example usage:
Expand Down Expand Up @@ -313,7 +313,7 @@ private static void ValidateInputParam(string arg)
/// <summary>
/// Tiny command line argument parser. This version implements IDisposable, and will throw if there are any unused command line parameters
/// </summary>
public sealed class PicoArgsDisposable(IEnumerable<string> args) : PicoArgs(args), IDisposable
public sealed class PicoArgsDisposable(IEnumerable<string> args, bool recogniseEquals = true) : PicoArgs(args, recogniseEquals), IDisposable
{
/// <summary>
/// If true, supress the check for unused command line parameters
Expand Down

0 comments on commit 9048eaa

Please sign in to comment.