We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afc9865 commit cabc259Copy full SHA for cabc259
src/AtleX.CommandLineArguments/Configuration/KeyValueStyleConfiguration.cs
@@ -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
14
+ /// Initializes a new instance of <see cref="KeyValueStyleConfiguration"/>
15
16
+ public KeyValueStyleConfiguration()
17
18
+ this.Parser = new KeyValueStyleParser();
19
+ this.HelpWriter = new KeyValueStyleHelpWriter();
20
+ }
21
22
23
+}
0 commit comments