├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── Utility.CommandLine.Arguments.sln ├── appveyor.yml ├── examples ├── Echo │ ├── Echo.csproj │ └── Program.cs ├── Example.Net6 │ ├── Example.Net6.csproj │ └── Program.cs └── Example │ ├── Example.csproj │ └── Program.cs ├── src ├── CodeAnalysis │ └── CodeAnalysis.ruleset └── Utility.CommandLine.Arguments │ ├── Arguments.cs │ └── Utility.CommandLine.Arguments.csproj └── tests ├── CodeAnalysis └── CodeAnalysis.ruleset └── Utility.CommandLine.Arguments.Tests ├── ArgumentsTests.cs └── Utility.CommandLine.Arguments.Tests.csproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpdillingham/Utility.CommandLine.Arguments/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpdillingham/Utility.CommandLine.Arguments/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpdillingham/Utility.CommandLine.Arguments/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpdillingham/Utility.CommandLine.Arguments/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpdillingham/Utility.CommandLine.Arguments/HEAD/README.md -------------------------------------------------------------------------------- /Utility.CommandLine.Arguments.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpdillingham/Utility.CommandLine.Arguments/HEAD/Utility.CommandLine.Arguments.sln -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpdillingham/Utility.CommandLine.Arguments/HEAD/appveyor.yml -------------------------------------------------------------------------------- /examples/Echo/Echo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpdillingham/Utility.CommandLine.Arguments/HEAD/examples/Echo/Echo.csproj -------------------------------------------------------------------------------- /examples/Echo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpdillingham/Utility.CommandLine.Arguments/HEAD/examples/Echo/Program.cs -------------------------------------------------------------------------------- /examples/Example.Net6/Example.Net6.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpdillingham/Utility.CommandLine.Arguments/HEAD/examples/Example.Net6/Example.Net6.csproj -------------------------------------------------------------------------------- /examples/Example.Net6/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpdillingham/Utility.CommandLine.Arguments/HEAD/examples/Example.Net6/Program.cs -------------------------------------------------------------------------------- /examples/Example/Example.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpdillingham/Utility.CommandLine.Arguments/HEAD/examples/Example/Example.csproj -------------------------------------------------------------------------------- /examples/Example/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpdillingham/Utility.CommandLine.Arguments/HEAD/examples/Example/Program.cs -------------------------------------------------------------------------------- /src/CodeAnalysis/CodeAnalysis.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpdillingham/Utility.CommandLine.Arguments/HEAD/src/CodeAnalysis/CodeAnalysis.ruleset -------------------------------------------------------------------------------- /src/Utility.CommandLine.Arguments/Arguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpdillingham/Utility.CommandLine.Arguments/HEAD/src/Utility.CommandLine.Arguments/Arguments.cs -------------------------------------------------------------------------------- /src/Utility.CommandLine.Arguments/Utility.CommandLine.Arguments.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpdillingham/Utility.CommandLine.Arguments/HEAD/src/Utility.CommandLine.Arguments/Utility.CommandLine.Arguments.csproj -------------------------------------------------------------------------------- /tests/CodeAnalysis/CodeAnalysis.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpdillingham/Utility.CommandLine.Arguments/HEAD/tests/CodeAnalysis/CodeAnalysis.ruleset -------------------------------------------------------------------------------- /tests/Utility.CommandLine.Arguments.Tests/ArgumentsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpdillingham/Utility.CommandLine.Arguments/HEAD/tests/Utility.CommandLine.Arguments.Tests/ArgumentsTests.cs -------------------------------------------------------------------------------- /tests/Utility.CommandLine.Arguments.Tests/Utility.CommandLine.Arguments.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpdillingham/Utility.CommandLine.Arguments/HEAD/tests/Utility.CommandLine.Arguments.Tests/Utility.CommandLine.Arguments.Tests.csproj --------------------------------------------------------------------------------