├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ └── ci.yml ├── .gitignore ├── doc ├── XenoAtom.CommandLine.png └── readme.md ├── img └── icon.png ├── license.txt ├── readme.md ├── samples ├── AdvancedApp │ ├── AdvancedApp.csproj │ ├── Program.cs │ └── Properties │ │ └── launchSettings.json └── HelloWorld │ ├── HelloWorld.csproj │ ├── Program.cs │ └── Properties │ └── launchSettings.json └── src ├── XenoAtom.CommandLine.Tests ├── CommandLineTests.cs ├── SpecialTests.cs ├── Verified │ ├── CommandLineTests.TestHelloWorld_result=0,--help.verified.txt │ ├── CommandLineTests.TestHelloWorld_result=0,--name,John,-a50,-DHello,-DWorld=126.verified.txt │ ├── CommandLineTests.TestHelloWorld_result=0,--name,John,-a50,commit,--message,Hello!,--message,World!.verified.txt │ ├── CommandLineTests.TestHelloWorld_result=0,--name,John,-a50.verified.txt │ ├── CommandLineTests.TestHelloWorld_result=0,commit,--help.verified.txt │ ├── CommandLineTests.Test_result=0,--.verified.txt │ ├── CommandLineTests.Test_result=0,--advanced,--help.verified.txt │ ├── CommandLineTests.Test_result=0,--help.verified.txt │ ├── CommandLineTests.Test_result=0,--version.verified.txt │ ├── CommandLineTests.Test_result=0,-DHELLO,-DTEST=WORLD.verified.txt │ ├── CommandLineTests.Test_result=0,-DHELLO.verified.txt │ ├── CommandLineTests.Test_result=0,-a,--help.verified.txt │ ├── CommandLineTests.Test_result=0,-a,--special1,--special2.verified.txt │ ├── CommandLineTests.Test_result=0,-a,chroot,--help.verified.txt │ ├── CommandLineTests.Test_result=0,-a,chroot,-M,name,value.verified.txt │ ├── CommandLineTests.Test_result=0,-a,chroot,-P,name1--value2.verified.txt │ ├── CommandLineTests.Test_result=0,-a,chroot,-i,-i+,-i-,1,2,3.verified.txt │ ├── CommandLineTests.Test_result=0,-a,chroot,1,2,3.verified.txt │ ├── CommandLineTests.Test_result=0,-f,test1.txt,-f,test2.txt.verified.txt │ ├── CommandLineTests.Test_result=0,-f,test1.txt.verified.txt │ ├── CommandLineTests.Test_result=0,-f=.verified.txt │ ├── CommandLineTests.Test_result=0,-h.verified.txt │ ├── CommandLineTests.Test_result=0,-t,-x.verified.txt │ ├── CommandLineTests.Test_result=0,-t.verified.txt │ ├── CommandLineTests.Test_result=0,-txc.verified.txt │ ├── CommandLineTests.Test_result=0,-v.verified.txt │ ├── CommandLineTests.Test_result=0,hello,--help.verified.txt │ ├── CommandLineTests.Test_result=0,hello,--name,foo,--,--age,15.verified.txt │ ├── CommandLineTests.Test_result=0,hello,--name,foo,--age,15.verified.txt │ ├── CommandLineTests.Test_result=0,hello,file1.txt,file2.txt.verified.txt │ ├── CommandLineTests.Test_result=0,hello,file1.txt.verified.txt │ ├── CommandLineTests.Test_result=0,hello.verified.txt │ ├── CommandLineTests.Test_result=0,world,--help.verified.txt │ ├── CommandLineTests.Test_result=0,world,-eValue1,--enum,Value2,--enum=Value3,--enum-Value1.verified.txt │ ├── CommandLineTests.Test_result=0,world,1,2,-e,Value1,-e=Value2,3.verified.txt │ ├── CommandLineTests.Test_result=0,world,@world.txt.verified.txt │ ├── CommandLineTests.Test_result=0.verified.txt │ ├── CommandLineTests.Test_result=1,--special1.verified.txt │ ├── CommandLineTests.Test_result=1,--wonder.verified.txt │ ├── CommandLineTests.Test_result=1,-a,chroot,-M,name.verified.txt │ ├── CommandLineTests.Test_result=1,-f.verified.txt │ ├── CommandLineTests.Test_result=1,-w.verified.txt │ ├── CommandLineTests.Test_result=1,file1.txt.verified.txt │ ├── CommandLineTests.Test_result=1,hello,--age,invalid.verified.txt │ └── CommandLineTests.Test_result=1,world,--enum,Value4.verified.txt ├── XenoAtom.CommandLine.Tests.csproj └── world.txt ├── XenoAtom.CommandLine.sln ├── XenoAtom.CommandLine.sln.DotSettings ├── XenoAtom.CommandLine ├── ArgumentSource.cs ├── Command.cs ├── CommandApp.cs ├── CommandConfig.cs ├── CommandContainer.cs ├── CommandException.cs ├── CommandExtensions.cs ├── CommandGroup.cs ├── CommandNode.cs ├── CommandRunConfig.cs ├── CommandRunContext.cs ├── CommandUsage.cs ├── EnumWrapper.cs ├── HelpOption.cs ├── ICommandNodeDescriptor.cs ├── Option.cs ├── OptionContext.cs ├── OptionException.cs ├── OptionValueCollection.cs ├── OptionValueType.cs ├── PathHelper.cs ├── ResponseFileSource.cs ├── StringCoda.cs ├── VersionOption.cs ├── XenoAtom.CommandLine.cd └── XenoAtom.CommandLine.csproj ├── dotnet-releaser.toml └── global.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/.gitignore -------------------------------------------------------------------------------- /doc/XenoAtom.CommandLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/doc/XenoAtom.CommandLine.png -------------------------------------------------------------------------------- /doc/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/doc/readme.md -------------------------------------------------------------------------------- /img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/img/icon.png -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/license.txt -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/readme.md -------------------------------------------------------------------------------- /samples/AdvancedApp/AdvancedApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/samples/AdvancedApp/AdvancedApp.csproj -------------------------------------------------------------------------------- /samples/AdvancedApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/samples/AdvancedApp/Program.cs -------------------------------------------------------------------------------- /samples/AdvancedApp/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/samples/AdvancedApp/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/HelloWorld/HelloWorld.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/samples/HelloWorld/HelloWorld.csproj -------------------------------------------------------------------------------- /samples/HelloWorld/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/samples/HelloWorld/Program.cs -------------------------------------------------------------------------------- /samples/HelloWorld/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/samples/HelloWorld/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine.Tests/CommandLineTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine.Tests/CommandLineTests.cs -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine.Tests/SpecialTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine.Tests/SpecialTests.cs -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.TestHelloWorld_result=0,--help.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.TestHelloWorld_result=0,--help.verified.txt -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.TestHelloWorld_result=0,--name,John,-a50,-DHello,-DWorld=126.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.TestHelloWorld_result=0,--name,John,-a50,-DHello,-DWorld=126.verified.txt -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.TestHelloWorld_result=0,--name,John,-a50,commit,--message,Hello!,--message,World!.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.TestHelloWorld_result=0,--name,John,-a50,commit,--message,Hello!,--message,World!.verified.txt -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.TestHelloWorld_result=0,--name,John,-a50.verified.txt: -------------------------------------------------------------------------------- 1 | Hello John! You are 50 years old. 2 | -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.TestHelloWorld_result=0,commit,--help.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.TestHelloWorld_result=0,commit,--help.verified.txt -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=0,--.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=0,--.verified.txt -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=0,--advanced,--help.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=0,--advanced,--help.verified.txt -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=0,--help.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=0,--help.verified.txt -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=0,--version.verified.txt: -------------------------------------------------------------------------------- 1 | 1.2.3 2 | -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=0,-DHELLO,-DTEST=WORLD.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=0,-DHELLO,-DTEST=WORLD.verified.txt -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=0,-DHELLO.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=0,-DHELLO.verified.txt -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=0,-a,--help.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=0,-a,--help.verified.txt -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=0,-a,--special1,--special2.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=0,-a,--special1,--special2.verified.txt -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=0,-a,chroot,--help.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=0,-a,chroot,--help.verified.txt -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=0,-a,chroot,-M,name,value.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=0,-a,chroot,-M,name,value.verified.txt -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=0,-a,chroot,-P,name1--value2.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=0,-a,chroot,-P,name1--value2.verified.txt -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=0,-a,chroot,-i,-i+,-i-,1,2,3.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=0,-a,chroot,-i,-i+,-i-,1,2,3.verified.txt -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=0,-a,chroot,1,2,3.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=0,-a,chroot,1,2,3.verified.txt -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=0,-f,test1.txt,-f,test2.txt.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=0,-f,test1.txt,-f,test2.txt.verified.txt -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=0,-f,test1.txt.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=0,-f,test1.txt.verified.txt -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=0,-f=.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=0,-f=.verified.txt -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=0,-h.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=0,-h.verified.txt -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=0,-t,-x.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=0,-t,-x.verified.txt -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=0,-t.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=0,-t.verified.txt -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=0,-txc.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=0,-txc.verified.txt -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=0,-v.verified.txt: -------------------------------------------------------------------------------- 1 | 1.2.3 2 | -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=0,hello,--help.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=0,hello,--help.verified.txt -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=0,hello,--name,foo,--,--age,15.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=0,hello,--name,foo,--,--age,15.verified.txt -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=0,hello,--name,foo,--age,15.verified.txt: -------------------------------------------------------------------------------- 1 | Hello name=foo, age=15 2 | -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=0,hello,file1.txt,file2.txt.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=0,hello,file1.txt,file2.txt.verified.txt -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=0,hello,file1.txt.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=0,hello,file1.txt.verified.txt -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=0,hello.verified.txt: -------------------------------------------------------------------------------- 1 | Hello name=, age=0 2 | -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=0,world,--help.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=0,world,--help.verified.txt -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=0,world,-eValue1,--enum,Value2,--enum=Value3,--enum-Value1.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=0,world,-eValue1,--enum,Value2,--enum=Value3,--enum-Value1.verified.txt -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=0,world,1,2,-e,Value1,-e=Value2,3.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=0,world,1,2,-e,Value1,-e=Value2,3.verified.txt -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=0,world,@world.txt.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=0,world,@world.txt.verified.txt -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=0.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=0.verified.txt -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=1,--special1.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=1,--special1.verified.txt -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=1,--wonder.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=1,--wonder.verified.txt -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=1,-a,chroot,-M,name.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=1,-a,chroot,-M,name.verified.txt -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=1,-f.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=1,-f.verified.txt -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=1,-w.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=1,-w.verified.txt -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=1,file1.txt.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=1,file1.txt.verified.txt -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=1,hello,--age,invalid.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=1,hello,--age,invalid.verified.txt -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=1,world,--enum,Value4.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine.Tests/Verified/CommandLineTests.Test_result=1,world,--enum,Value4.verified.txt -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine.Tests/XenoAtom.CommandLine.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine.Tests/XenoAtom.CommandLine.Tests.csproj -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine.Tests/world.txt: -------------------------------------------------------------------------------- 1 | --enum Value2 2 | Hello 3 | World 4 | From 5 | Response 6 | File -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine.sln -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine.sln.DotSettings -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine/ArgumentSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine/ArgumentSource.cs -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine/Command.cs -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine/CommandApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine/CommandApp.cs -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine/CommandConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine/CommandConfig.cs -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine/CommandContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine/CommandContainer.cs -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine/CommandException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine/CommandException.cs -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine/CommandExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine/CommandExtensions.cs -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine/CommandGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine/CommandGroup.cs -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine/CommandNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine/CommandNode.cs -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine/CommandRunConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine/CommandRunConfig.cs -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine/CommandRunContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine/CommandRunContext.cs -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine/CommandUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine/CommandUsage.cs -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine/EnumWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine/EnumWrapper.cs -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine/HelpOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine/HelpOption.cs -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine/ICommandNodeDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine/ICommandNodeDescriptor.cs -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine/Option.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine/Option.cs -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine/OptionContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine/OptionContext.cs -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine/OptionException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine/OptionException.cs -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine/OptionValueCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine/OptionValueCollection.cs -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine/OptionValueType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine/OptionValueType.cs -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine/PathHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine/PathHelper.cs -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine/ResponseFileSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine/ResponseFileSource.cs -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine/StringCoda.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine/StringCoda.cs -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine/VersionOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine/VersionOption.cs -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine/XenoAtom.CommandLine.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine/XenoAtom.CommandLine.cd -------------------------------------------------------------------------------- /src/XenoAtom.CommandLine/XenoAtom.CommandLine.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/XenoAtom.CommandLine/XenoAtom.CommandLine.csproj -------------------------------------------------------------------------------- /src/dotnet-releaser.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/dotnet-releaser.toml -------------------------------------------------------------------------------- /src/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenoAtom/XenoAtom.CommandLine/HEAD/src/global.json --------------------------------------------------------------------------------