Skip to content

Commit 26d549f

Browse files
committed
Merge branch 'issue59-sideeff' into develop-1.9.8-beta -> issue #59.
Conflicts: CommandLine.sln.DotSettings.user README.md src/SharedAssemblyInfo.cs
2 parents 205094c + c29a762 commit 26d549f

31 files changed

+954
-1108
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,5 @@ src/tests/test-results/*
2121
TestResult.xml
2222
*.nupkg
2323
*.old
24-
StyleCop.Cache
24+
StyleCop.Cache
25+
_*.cs

CommandLine.sln.DotSettings.user

+1-1
Large diffs are not rendered by default.

README.md

+6-8
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
1-
Command Line Parser Library 1.9.71.2 stable for CLR.
1+
Command Line Parser Library 1.9.8.1 beta for CLR.
22
===
33
The Command Line Parser Library offers to CLR applications a clean and concise API for manipulating command line arguments and related tasks defining switches, options and verb commands. It allows you to display an help screen with an high degree of customization and a simple way to report syntax errors to the end user. Everything that is boring and repetitive to be programmed stands up on library shoulders, letting developers concentrate on core logic.
44
__This library provides _hassle free_ command line parsing with a constantly updated API since 2005.__
55

6+
News:
7+
---
8+
- First attempt to remove main side effects from Parser class (help output excluded).
9+
610
Compatibility:
711
---
812
- .NET Framework 3.5+
@@ -104,15 +108,9 @@ Resources for newcomers:
104108
- [Wiki](https://github.com/gsscoder/commandline/wiki)
105109
- [GNU getopt](http://www.gnu.org/software/libc/manual/html_node/Getopt.html)
106110

107-
Latest Changes:
108-
---
109-
- Promoted to stable.
110-
- Implicit name is now available on ``OptionAttribute`` and ``OptionListAttribute``.
111-
- Fixing version numeration error.
112-
113111
Contacts:
114112
---
115113
Giacomo Stelluti Scala
116114
- gsscoder AT gmail DOT com
117115
- [Blog](http://gsscoder.blogspot.it)
118-
- [Twitter](http://twitter.com/gsscoder)
116+
- [Twitter](http://twitter.com/gsscoder)

src/SharedAssemblyInfo.cs

+4-4
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828

2929
[assembly: AssemblyProduct("Command Line Parser Library")]
3030
[assembly: AssemblyCopyright("Copyright (c) 2005 - 2013 Giacomo Stelluti Scala")]
31-
[assembly: AssemblyVersion("1.9.71.2")]
32-
[assembly: AssemblyFileVersion("1.9.71.2")]
31+
[assembly: AssemblyVersion("1.9.8.1")]
32+
[assembly: AssemblyFileVersion("1.9.8.1")]
3333

34-
[assembly: AssemblyInformationalVersion("1.9.71-stable")]
35-
[assembly: NeutralResourcesLanguage("en-US")]
34+
[assembly: AssemblyInformationalVersion("1.9.8-beta")]
35+
[assembly: NeutralResourcesLanguage("en-US")]

src/demo/Program.cs

+5-38
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
#region License
2-
//
3-
// Command Line Library: Program.cs
4-
//
5-
// Author:
6-
// Giacomo Stelluti Scala (gsscoder@gmail.com)
7-
//
8-
// Copyright (C) 2005 - 2013 Giacomo Stelluti Scala
2+
// <copyright file="Program.cs" company="Giacomo Stelluti Scala">
3+
// Copyright 2015-2013 Giacomo Stelluti Scala
4+
// </copyright>
95
//
106
// Permission is hereby granted, free of charge, to any person obtaining a copy
117
// of this software and associated documentation files (the "Software"), to deal
@@ -24,26 +20,15 @@
2420
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2521
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2622
// THE SOFTWARE.
27-
//
2823
#endregion
29-
//#define EXEC_TESTS
3024
#region Using Directives
3125
using System;
32-
using System.Collections.Generic;
33-
using System.ComponentModel;
3426
using System.Text;
35-
using CommandLine;
3627
using CommandLine.Text;
37-
#if EXEC_TESTS
38-
using CommandLine.Tests;
39-
using CommandLine.Text.Tests;
40-
#endif
4128
#endregion
4229

4330
namespace CommandLine.Demo
4431
{
45-
46-
4732
sealed partial class Program
4833
{
4934
private static readonly HeadingInfo HeadingInfo = new HeadingInfo("sampleapp", "1.8");
@@ -54,16 +39,9 @@ sealed partial class Program
5439
/// <param name="args">Command line arguments splitted by the system.</param>
5540
private static void Main(string[] args)
5641
{
57-
#if EXEC_TESTS
58-
RunATestForDebugging();
59-
#endif
60-
var options = new Options();
61-
var parser = new CommandLine.Parser(with => with.HelpWriter = Console.Error);
42+
var options = CommandLine.Parser.Default.ParseArguments<Options>(args, () => Environment.Exit(-2));
6243

63-
if (parser.ParseArgumentsStrict(args, options, () => Environment.Exit(-2)))
64-
{
65-
Run(options);
66-
}
44+
Run(options);
6745
}
6846

6947
private static void Run(Options options)
@@ -118,16 +96,5 @@ private static void Run(Options options)
11896
Console.WriteLine("[...]");
11997
}
12098
}
121-
122-
#if EXEC_TESTS
123-
private static void RunATestForDebugging()
124-
{
125-
//var test = new {XYZ}Fixture();
126-
//test.ExecUnitTestMethod("but set a breakpoint before!");
127-
Console.Write("press any key");
128-
Console.ReadKey();
129-
Environment.Exit(1);
130-
}
131-
#endif
13299
}
133100
}

src/libcmdline/Attributes/OptionListAttribute.cs

+7-7
Original file line numberDiff line numberDiff line change
@@ -34,18 +34,18 @@ namespace CommandLine
3434
/// of <see cref="System.String"/> instances.
3535
/// </summary>
3636
[AttributeUsage(AttributeTargets.Property, AllowMultiple = false, Inherited = true)]
37-
public sealed class OptionListAttribute : BaseOptionAttribute
38-
{
37+
public sealed class OptionListAttribute : BaseOptionAttribute
38+
{
3939
private const char DefaultSeparator = ':';
4040

41-
/// <summary>
41+
/// <summary>
4242
/// Initializes a new instance of the <see cref="CommandLine.OptionListAttribute"/> class.
4343
/// The default long name will be inferred from target property.
44-
/// </summary>
44+
/// </summary>
4545
public OptionListAttribute()
4646
{
47-
AutoLongName = true;
48-
47+
AutoLongName = true;
48+
4949
Separator = DefaultSeparator;
5050
}
5151

@@ -74,7 +74,7 @@ public OptionListAttribute(string longName)
7474
/// <param name="longName">The long name of the option or null if not used.</param>
7575
public OptionListAttribute(char shortName, string longName)
7676
: base(shortName, longName)
77-
{
77+
{
7878
Separator = DefaultSeparator;
7979
}
8080

0 commit comments

Comments
 (0)