-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #31 from dazinator/develop
Version 2 merge to master.
- Loading branch information
Showing
142 changed files
with
37,463 additions
and
481 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
assembly-versioning-scheme: MajorMinorPatch | ||
branches: {} |
Binary file not shown.
Binary file not shown.
1,390 changes: 1,390 additions & 0 deletions
1,390
lib/CommandLineParser.1.9.71/lib/net35/CommandLine.xml
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
1,390 changes: 1,390 additions & 0 deletions
1,390
lib/CommandLineParser.1.9.71/lib/net40/CommandLine.xml
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
1,390 changes: 1,390 additions & 0 deletions
1,390
lib/CommandLineParser.1.9.71/lib/net45/CommandLine.xml
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
Command Line Parser Library 1.9.71.2 stable | ||
------------------------------------------ | ||
Giacomo Stelluti Scala | ||
([email protected]) | ||
|
||
GitHub (Latest Sources, Updated Docs): https://github.com/gsscoder/commandline | ||
Codeplex (Binary Downloads): http://commandline.codeplex.com/ | ||
|
||
Remarks: | ||
- IParser and IParserSettings interface were removed. | ||
|
||
Upgrading from < 1.9.6.1 rc1: | ||
----------------------------- | ||
Now CommandLine.Parser is defiend as: | ||
interface CommandLine.Parser { | ||
bool ParseArguments(string[] args, object options); | ||
bool ParseArguments(string[] args, object options, Action<string, object> onVerbCommand); | ||
bool ParseArgumentsStrict(string[] args, object options, Action onFail = null); | ||
bool ParseArgumentsStrict(string[] args, object options, Action<string, object> onVerbCommand, Action onFail = null); | ||
} | ||
Please refer to wiki (https://github.com/gsscoder/commandline/wiki). | ||
For help screen in verb command scenario use new HelpText::AutoBuild(object,string). | ||
|
||
Upgrading from < 1.9.4.91 versions: | ||
----------------------------------- | ||
- Use System.Char for short name: | ||
[Option('o', "my-option", DefaultValue=10, HelpText="This is an option!")] | ||
public int MyOption { get; set; } | ||
- Receive parsing errors without CommandLineOptionsBase (removed): | ||
public class Options { | ||
[ParserState] | ||
public IParserState LastParserState { get; set; } | ||
} | ||
- Types rename: | ||
MultiLineTextAttribute -> MultilineTextAttribute (first 'L' -> lowercase) | ||
CommandLineParser -> Parser (suggestion: qualify with namespace -> CommandLine.Parser). | ||
ICommandLineParser -> IParser | ||
CommandLineParserSettings -> ParserSettings | ||
CommandLineParserException -> ParserException | ||
|
||
Upgrading from 1.8.* versions: | ||
------------------------------ | ||
The major API change is that all attributes that inherits from BaseOptionAttribute now | ||
apply only to properties. Fields are no longer supported. | ||
|
||
Old Code: | ||
--------- | ||
class Options { | ||
[Option("o", "my-option", HelpText="This is an option!")] | ||
public int MyOption = 10; | ||
} | ||
|
||
New Code: | ||
--------- | ||
class Options { | ||
[Option("o", "my-option", DefaultValue=10, HelpText="This is an option!")] | ||
public int MyOption { get; set; } | ||
} | ||
|
||
As you can see I've added the new DefaultValue property to help you initialize properties. | ||
|
||
Shortcut for Help Screen | ||
------------------------ | ||
[HelpOption] | ||
public string GetUsage() | ||
{ | ||
return HelpText.AutoBuild(this, | ||
(HelpText current) => HelpText.DefaultParsingErrorsHandler(this, current)); | ||
} | ||
|
||
Note: | ||
----- | ||
If you don't use mutually exclusive options, now there's a singleton built for common uses: | ||
|
||
if (CommandLineParser.Default.ParseArguments(args, options)) { | ||
// consume values here | ||
} | ||
|
||
Have fun! |
This file was deleted.
Oops, something went wrong.
Binary file added
BIN
+30 KB
lib/Microsoft.Web.Infrastructure.1.0.0.0/Microsoft.Web.Infrastructure.1.0.0.0.nupkg
Binary file not shown.
Binary file added
BIN
+44.4 KB
lib/Microsoft.Web.Infrastructure.1.0.0.0/lib/net40/Microsoft.Web.Infrastructure.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
Copyright � 2002-2014 Charlie Poole | ||
Copyright � 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov | ||
Copyright � 2000-2002 Philip A. Craig | ||
|
||
This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. | ||
|
||
Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: | ||
|
||
1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment (see the following) in the product documentation is required. | ||
|
||
Portions Copyright � 2002-2014 Charlie Poole or Copyright � 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov or Copyright � 2000-2002 Philip A. Craig | ||
|
||
2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. | ||
|
||
3. This notice may not be removed or altered from any source distribution. |
Binary file not shown.
Binary file not shown.
Oops, something went wrong.
ff57da8
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TeamCity DnnPackager :: Continuos Build 62 is now running
ff57da8
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TeamCity DnnPackager :: Continuos Build 2.0.0+36 outcome was SUCCESS
Summary: Running Build time: 00:00:07
ff57da8
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TeamCity DnnPackager :: Continuos Build 86 is now running
ff57da8
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TeamCity DnnPackager :: Continuos Build 2.0.0 outcome was SUCCESS
Summary: Running Build time: 00:00:13
ff57da8
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TeamCity DnnPackager :: Continuos Build 100 is now running
ff57da8
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TeamCity DnnPackager :: Continuos Build 2.0.0 outcome was SUCCESS
Summary: Running Build time: 00:00:06
ff57da8
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TeamCity DnnPackager :: Continuos Build 103 is now running
ff57da8
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TeamCity DnnPackager :: Continuos Build 2.0.0 outcome was SUCCESS
Summary: Running Build time: 00:00:14
ff57da8
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TeamCity DnnPackager :: Continuos Build 117 is now running
ff57da8
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TeamCity DnnPackager :: Continuos Build 2.0.0 outcome was SUCCESS
Summary: Running Build time: 00:00:17
ff57da8
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TeamCity DnnPackager :: Continuos Build 126 is now running
ff57da8
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TeamCity DnnPackager :: Continuos Build 2.0.0 outcome was SUCCESS
Summary: Running Build time: 00:00:12