From 244e10715b5b76c7732c95dabcc226407d9cabbe Mon Sep 17 00:00:00 2001 From: Atif Aziz Date: Tue, 29 Mar 2022 13:07:27 +0200 Subject: [PATCH] Update package authors --- src/DocoptNet/DocoptNet.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/DocoptNet/DocoptNet.csproj b/src/DocoptNet/DocoptNet.csproj index 6d58d065..516c3f58 100644 --- a/src/DocoptNet/DocoptNet.csproj +++ b/src/DocoptNet/DocoptNet.csproj @@ -24,7 +24,7 @@ ..\..\dist $([System.IO.File]::ReadAllText('$(PackageReleaseNotesFile)')) docopt.net, a beautiful command-line parser - Dinh Doan Van Bien;Vladimir Keleshev + Dinh Doan Van Bien;Vladimir Keleshev;Atif Aziz docopt.net is the .net version of the docopt python beautiful command line parser. docopt.net helps you define an interface for your command-line app, and automatically generate a parser for it. docopt.net is based on conventions that have been used for decades in help messages and man pages for program interface description. Interface description in docopt.net is such a help message, but formalized. Check out http://docopt.org for a more detailed explanation. Quick example: var arguments = new Docopt().Apply("Usage: prog [-a] [-b] FILE", args);