├── .github └── workflows │ ├── buildAndTest.yml │ └── publishToNuget.yml ├── .gitignore ├── CommandLine.sln ├── LICENSE ├── README.md ├── analyzer ├── CommandLine.Analyzer.Test │ ├── CommandLine.Analyzer.Test.csproj │ ├── CommandLineUnitTests.cs │ ├── Helpers │ │ ├── DiagnosticResult.cs │ │ └── DiagnosticVerifier.Helper.cs │ └── Verifiers │ │ └── DiagnosticVerifier.cs ├── CommandLine.Analyzer.Vsix │ ├── CommandLine.Vsix.csproj │ └── source.extension.vsixmanifest ├── CommandLine.Analyzer.sln └── CommandLine.Analyzer │ ├── Arguments │ ├── ActionArgument.cs │ ├── Argument.cs │ ├── NamedArgument.cs │ ├── OptionalArgument.cs │ └── RequiredArgument.cs │ ├── CommandLine.Analyzer.csproj │ ├── CommandLineAnalyzer.Diagnostics.cs │ ├── CommandLineAnalyzer.cs │ └── tools │ ├── install.ps1 │ └── uninstall.ps1 ├── codecov.yml ├── commandline.snk ├── src ├── Analysis │ ├── ArgumentGroupInfo.cs │ ├── PropertyHelpers.cs │ ├── TypeArgumentInfo.cs │ └── TypeHelpers.cs ├── Attributes │ ├── ActualArgumentAttribute.cs │ ├── Advanced │ │ ├── ActionArgumentAttribute.cs │ │ ├── ArgumentGroupAttribute.cs │ │ ├── CommonArgumentAttribute.cs │ │ └── GroupAttribute.cs │ ├── BaseArgumentAttribute.cs │ ├── OptionalArgumentAttribute.cs │ └── RequiredArgumentAttribute.cs ├── CommandLine.csproj ├── Help │ ├── ColorScheme │ │ ├── DarkBackground.cs │ │ ├── IColors.cs │ │ └── LightBackground.cs │ ├── HelpFormat.cs │ └── HelpGenerator.cs ├── HelpRequestedException.cs ├── Parser.Configuration.cs ├── Parser.Internal.cs ├── Parser.cs ├── ParserException.cs └── ParserOptions.cs └── test ├── ColorizerWriterObject └── TestWriter.cs ├── CommandLine.Tests.csproj ├── CommandLineTests.Environment.cs ├── CommandLineTests.Functional.cs ├── CommandLineTests.Help.cs ├── CommandLineTests.Negative.cs ├── CommandLineTests.ResponseFile.cs ├── CommandLineTestsGroups.cs ├── Helpers.cs ├── SampleRspFiles ├── response1.rsp ├── response2_1.rsp ├── response2_2.rsp ├── response3_1.rsp ├── response3_2.rsp ├── response4.rsp └── response5.rsp └── TestObjects ├── Action.cs ├── CommandAction.cs ├── ComplexType1.cs ├── ComplexType2.cs ├── ComplexType3.cs ├── ComplexType4.cs ├── ComplexType5.cs ├── ComplexType6.cs ├── ComplexType7.cs ├── Groups1.cs ├── Groups2.cs ├── GroupsNegative.cs ├── HelpGeneratorObject.cs ├── Negative.cs ├── ObjectType.cs ├── Options1.cs ├── Options2.cs ├── Options3NoRequired.cs ├── OptionsNegative_BadDefaultValue.cs ├── OverridePositionGroup.cs ├── OverridePositionGroup2.cs ├── OverridePositionGroupWithMoreArgs.cs ├── OverridePositionGroup_Conflict.cs ├── SimpleType1.cs ├── SimpleType2.cs └── SimpleType3.cs /.github/workflows/buildAndTest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/.github/workflows/buildAndTest.yml -------------------------------------------------------------------------------- /.github/workflows/publishToNuget.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/.github/workflows/publishToNuget.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/.gitignore -------------------------------------------------------------------------------- /CommandLine.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/CommandLine.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/README.md -------------------------------------------------------------------------------- /analyzer/CommandLine.Analyzer.Test/CommandLine.Analyzer.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/analyzer/CommandLine.Analyzer.Test/CommandLine.Analyzer.Test.csproj -------------------------------------------------------------------------------- /analyzer/CommandLine.Analyzer.Test/CommandLineUnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/analyzer/CommandLine.Analyzer.Test/CommandLineUnitTests.cs -------------------------------------------------------------------------------- /analyzer/CommandLine.Analyzer.Test/Helpers/DiagnosticResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/analyzer/CommandLine.Analyzer.Test/Helpers/DiagnosticResult.cs -------------------------------------------------------------------------------- /analyzer/CommandLine.Analyzer.Test/Helpers/DiagnosticVerifier.Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/analyzer/CommandLine.Analyzer.Test/Helpers/DiagnosticVerifier.Helper.cs -------------------------------------------------------------------------------- /analyzer/CommandLine.Analyzer.Test/Verifiers/DiagnosticVerifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/analyzer/CommandLine.Analyzer.Test/Verifiers/DiagnosticVerifier.cs -------------------------------------------------------------------------------- /analyzer/CommandLine.Analyzer.Vsix/CommandLine.Vsix.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/analyzer/CommandLine.Analyzer.Vsix/CommandLine.Vsix.csproj -------------------------------------------------------------------------------- /analyzer/CommandLine.Analyzer.Vsix/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/analyzer/CommandLine.Analyzer.Vsix/source.extension.vsixmanifest -------------------------------------------------------------------------------- /analyzer/CommandLine.Analyzer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/analyzer/CommandLine.Analyzer.sln -------------------------------------------------------------------------------- /analyzer/CommandLine.Analyzer/Arguments/ActionArgument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/analyzer/CommandLine.Analyzer/Arguments/ActionArgument.cs -------------------------------------------------------------------------------- /analyzer/CommandLine.Analyzer/Arguments/Argument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/analyzer/CommandLine.Analyzer/Arguments/Argument.cs -------------------------------------------------------------------------------- /analyzer/CommandLine.Analyzer/Arguments/NamedArgument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/analyzer/CommandLine.Analyzer/Arguments/NamedArgument.cs -------------------------------------------------------------------------------- /analyzer/CommandLine.Analyzer/Arguments/OptionalArgument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/analyzer/CommandLine.Analyzer/Arguments/OptionalArgument.cs -------------------------------------------------------------------------------- /analyzer/CommandLine.Analyzer/Arguments/RequiredArgument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/analyzer/CommandLine.Analyzer/Arguments/RequiredArgument.cs -------------------------------------------------------------------------------- /analyzer/CommandLine.Analyzer/CommandLine.Analyzer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/analyzer/CommandLine.Analyzer/CommandLine.Analyzer.csproj -------------------------------------------------------------------------------- /analyzer/CommandLine.Analyzer/CommandLineAnalyzer.Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/analyzer/CommandLine.Analyzer/CommandLineAnalyzer.Diagnostics.cs -------------------------------------------------------------------------------- /analyzer/CommandLine.Analyzer/CommandLineAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/analyzer/CommandLine.Analyzer/CommandLineAnalyzer.cs -------------------------------------------------------------------------------- /analyzer/CommandLine.Analyzer/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/analyzer/CommandLine.Analyzer/tools/install.ps1 -------------------------------------------------------------------------------- /analyzer/CommandLine.Analyzer/tools/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/analyzer/CommandLine.Analyzer/tools/uninstall.ps1 -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/codecov.yml -------------------------------------------------------------------------------- /commandline.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/commandline.snk -------------------------------------------------------------------------------- /src/Analysis/ArgumentGroupInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/src/Analysis/ArgumentGroupInfo.cs -------------------------------------------------------------------------------- /src/Analysis/PropertyHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/src/Analysis/PropertyHelpers.cs -------------------------------------------------------------------------------- /src/Analysis/TypeArgumentInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/src/Analysis/TypeArgumentInfo.cs -------------------------------------------------------------------------------- /src/Analysis/TypeHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/src/Analysis/TypeHelpers.cs -------------------------------------------------------------------------------- /src/Attributes/ActualArgumentAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/src/Attributes/ActualArgumentAttribute.cs -------------------------------------------------------------------------------- /src/Attributes/Advanced/ActionArgumentAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/src/Attributes/Advanced/ActionArgumentAttribute.cs -------------------------------------------------------------------------------- /src/Attributes/Advanced/ArgumentGroupAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/src/Attributes/Advanced/ArgumentGroupAttribute.cs -------------------------------------------------------------------------------- /src/Attributes/Advanced/CommonArgumentAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/src/Attributes/Advanced/CommonArgumentAttribute.cs -------------------------------------------------------------------------------- /src/Attributes/Advanced/GroupAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/src/Attributes/Advanced/GroupAttribute.cs -------------------------------------------------------------------------------- /src/Attributes/BaseArgumentAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/src/Attributes/BaseArgumentAttribute.cs -------------------------------------------------------------------------------- /src/Attributes/OptionalArgumentAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/src/Attributes/OptionalArgumentAttribute.cs -------------------------------------------------------------------------------- /src/Attributes/RequiredArgumentAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/src/Attributes/RequiredArgumentAttribute.cs -------------------------------------------------------------------------------- /src/CommandLine.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/src/CommandLine.csproj -------------------------------------------------------------------------------- /src/Help/ColorScheme/DarkBackground.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/src/Help/ColorScheme/DarkBackground.cs -------------------------------------------------------------------------------- /src/Help/ColorScheme/IColors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/src/Help/ColorScheme/IColors.cs -------------------------------------------------------------------------------- /src/Help/ColorScheme/LightBackground.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/src/Help/ColorScheme/LightBackground.cs -------------------------------------------------------------------------------- /src/Help/HelpFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/src/Help/HelpFormat.cs -------------------------------------------------------------------------------- /src/Help/HelpGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/src/Help/HelpGenerator.cs -------------------------------------------------------------------------------- /src/HelpRequestedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/src/HelpRequestedException.cs -------------------------------------------------------------------------------- /src/Parser.Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/src/Parser.Configuration.cs -------------------------------------------------------------------------------- /src/Parser.Internal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/src/Parser.Internal.cs -------------------------------------------------------------------------------- /src/Parser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/src/Parser.cs -------------------------------------------------------------------------------- /src/ParserException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/src/ParserException.cs -------------------------------------------------------------------------------- /src/ParserOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/src/ParserOptions.cs -------------------------------------------------------------------------------- /test/ColorizerWriterObject/TestWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/test/ColorizerWriterObject/TestWriter.cs -------------------------------------------------------------------------------- /test/CommandLine.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/test/CommandLine.Tests.csproj -------------------------------------------------------------------------------- /test/CommandLineTests.Environment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/test/CommandLineTests.Environment.cs -------------------------------------------------------------------------------- /test/CommandLineTests.Functional.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/test/CommandLineTests.Functional.cs -------------------------------------------------------------------------------- /test/CommandLineTests.Help.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/test/CommandLineTests.Help.cs -------------------------------------------------------------------------------- /test/CommandLineTests.Negative.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/test/CommandLineTests.Negative.cs -------------------------------------------------------------------------------- /test/CommandLineTests.ResponseFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/test/CommandLineTests.ResponseFile.cs -------------------------------------------------------------------------------- /test/CommandLineTestsGroups.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/test/CommandLineTestsGroups.cs -------------------------------------------------------------------------------- /test/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/test/Helpers.cs -------------------------------------------------------------------------------- /test/SampleRspFiles/response1.rsp: -------------------------------------------------------------------------------- 1 | Command1 p1 -opt1 10 -------------------------------------------------------------------------------- /test/SampleRspFiles/response2_1.rsp: -------------------------------------------------------------------------------- 1 | p1 2 -opt1 10 -------------------------------------------------------------------------------- /test/SampleRspFiles/response2_2.rsp: -------------------------------------------------------------------------------- 1 | -opt3 a b c -------------------------------------------------------------------------------- /test/SampleRspFiles/response3_1.rsp: -------------------------------------------------------------------------------- 1 | p1 d e fc -------------------------------------------------------------------------------- /test/SampleRspFiles/response3_2.rsp: -------------------------------------------------------------------------------- 1 | -opt1 10 -------------------------------------------------------------------------------- /test/SampleRspFiles/response4.rsp: -------------------------------------------------------------------------------- 1 | -? -------------------------------------------------------------------------------- /test/SampleRspFiles/response5.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/test/SampleRspFiles/response5.rsp -------------------------------------------------------------------------------- /test/TestObjects/Action.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/test/TestObjects/Action.cs -------------------------------------------------------------------------------- /test/TestObjects/CommandAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/test/TestObjects/CommandAction.cs -------------------------------------------------------------------------------- /test/TestObjects/ComplexType1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/test/TestObjects/ComplexType1.cs -------------------------------------------------------------------------------- /test/TestObjects/ComplexType2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/test/TestObjects/ComplexType2.cs -------------------------------------------------------------------------------- /test/TestObjects/ComplexType3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/test/TestObjects/ComplexType3.cs -------------------------------------------------------------------------------- /test/TestObjects/ComplexType4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/test/TestObjects/ComplexType4.cs -------------------------------------------------------------------------------- /test/TestObjects/ComplexType5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/test/TestObjects/ComplexType5.cs -------------------------------------------------------------------------------- /test/TestObjects/ComplexType6.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/test/TestObjects/ComplexType6.cs -------------------------------------------------------------------------------- /test/TestObjects/ComplexType7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/test/TestObjects/ComplexType7.cs -------------------------------------------------------------------------------- /test/TestObjects/Groups1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/test/TestObjects/Groups1.cs -------------------------------------------------------------------------------- /test/TestObjects/Groups2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/test/TestObjects/Groups2.cs -------------------------------------------------------------------------------- /test/TestObjects/GroupsNegative.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/test/TestObjects/GroupsNegative.cs -------------------------------------------------------------------------------- /test/TestObjects/HelpGeneratorObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/test/TestObjects/HelpGeneratorObject.cs -------------------------------------------------------------------------------- /test/TestObjects/Negative.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/test/TestObjects/Negative.cs -------------------------------------------------------------------------------- /test/TestObjects/ObjectType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/test/TestObjects/ObjectType.cs -------------------------------------------------------------------------------- /test/TestObjects/Options1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/test/TestObjects/Options1.cs -------------------------------------------------------------------------------- /test/TestObjects/Options2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/test/TestObjects/Options2.cs -------------------------------------------------------------------------------- /test/TestObjects/Options3NoRequired.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/test/TestObjects/Options3NoRequired.cs -------------------------------------------------------------------------------- /test/TestObjects/OptionsNegative_BadDefaultValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/test/TestObjects/OptionsNegative_BadDefaultValue.cs -------------------------------------------------------------------------------- /test/TestObjects/OverridePositionGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/test/TestObjects/OverridePositionGroup.cs -------------------------------------------------------------------------------- /test/TestObjects/OverridePositionGroup2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/test/TestObjects/OverridePositionGroup2.cs -------------------------------------------------------------------------------- /test/TestObjects/OverridePositionGroupWithMoreArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/test/TestObjects/OverridePositionGroupWithMoreArgs.cs -------------------------------------------------------------------------------- /test/TestObjects/OverridePositionGroup_Conflict.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/test/TestObjects/OverridePositionGroup_Conflict.cs -------------------------------------------------------------------------------- /test/TestObjects/SimpleType1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/test/TestObjects/SimpleType1.cs -------------------------------------------------------------------------------- /test/TestObjects/SimpleType2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/test/TestObjects/SimpleType2.cs -------------------------------------------------------------------------------- /test/TestObjects/SimpleType3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGhiondea/CommandLine/HEAD/test/TestObjects/SimpleType3.cs --------------------------------------------------------------------------------