Skip to content

Commit cabc259

Browse files
committed
Added missing KeyValueStyleConfiguration (for #9)
1 parent afc9865 commit cabc259

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
using AtleX.CommandLineArguments.Help;
2+
using AtleX.CommandLineArguments.Parsers;
3+
4+
namespace AtleX.CommandLineArguments.Configuration
5+
{
6+
/// <summary>
7+
/// Represents the <see cref="CommandLineArgumentsConfiguration"/> for
8+
/// key/value-style (key=value) command line arguments
9+
/// </summary>
10+
public class KeyValueStyleConfiguration
11+
: CommandLineArgumentsConfiguration
12+
{
13+
/// <summary>
14+
/// Initializes a new instance of <see cref="KeyValueStyleConfiguration"/>
15+
/// </summary>
16+
public KeyValueStyleConfiguration()
17+
{
18+
this.Parser = new KeyValueStyleParser();
19+
this.HelpWriter = new KeyValueStyleHelpWriter();
20+
}
21+
22+
}
23+
}

0 commit comments

Comments
 (0)