Skip to content

Commit 5bbbda2

Browse files
committed
Updading build version and README.
1 parent bc732f1 commit 5bbbda2

File tree

6 files changed

+322
-322
lines changed

6 files changed

+322
-322
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Command Line Parser Library 1.9.62.11 rc1 for CLR.
1+
Command Line Parser Library 1.9.62.15 rc1 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.__

doc/INFO

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Command Line Parser Library
33
Project Author/Coordinator: Giacomo Stelluti Scala
44
Main Contributor(s): Steven Evans, Kevin Moore, Dan Nemec (nemec), Alexander Fast (mizipzor)
55
--------------------------------------------------------------------------------------------
6-
Version 1.9.62.11 rc1 (*1)
6+
Version 1.9.62.15 rc1 (*1)
77
Latest Update: 2013-02-25
88

99
Git home:

src/SharedAssemblyInfo.cs

+2-2
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.62.11")]
32-
[assembly: AssemblyFileVersion("1.9.62.11")]
31+
[assembly: AssemblyVersion("1.9.62.15")]
32+
[assembly: AssemblyFileVersion("1.9.62.15")]
3333

3434
[assembly: AssemblyInformationalVersion("1.9.62-rc1")]
3535
[assembly: NeutralResourcesLanguage("en-US")]

src/libcmdline/CommandLine.csproj

+144-144
Original file line numberDiff line numberDiff line change
@@ -1,151 +1,151 @@
1-
<?xml version="1.0" encoding="utf-8"?>
2-
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
3-
<PropertyGroup>
4-
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5-
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6-
<ProductVersion>9.0.30729</ProductVersion>
7-
<SchemaVersion>2.0</SchemaVersion>
8-
<ProjectGuid>{5DEA2811-2FFA-4959-830B-CAD3ACACABEB}</ProjectGuid>
9-
<OutputType>Library</OutputType>
10-
<AppDesignerFolder>Properties</AppDesignerFolder>
11-
<RootNamespace>CommandLine</RootNamespace>
12-
<AssemblyName>CommandLine</AssemblyName>
13-
<FileUpgradeFlags>
14-
</FileUpgradeFlags>
15-
<OldToolsVersion>3.5</OldToolsVersion>
16-
<UpgradeBackupLocation>
17-
</UpgradeBackupLocation>
18-
<IsWebBootstrapper>false</IsWebBootstrapper>
19-
<PublishUrl>publish\</PublishUrl>
20-
<Install>true</Install>
21-
<InstallFrom>Disk</InstallFrom>
22-
<UpdateEnabled>false</UpdateEnabled>
23-
<UpdateMode>Foreground</UpdateMode>
24-
<UpdateInterval>7</UpdateInterval>
25-
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
26-
<UpdatePeriodically>false</UpdatePeriodically>
27-
<UpdateRequired>false</UpdateRequired>
28-
<MapFileExtensions>true</MapFileExtensions>
29-
<ApplicationRevision>0</ApplicationRevision>
30-
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
31-
<UseApplicationTrust>false</UseApplicationTrust>
32-
<BootstrapperEnabled>true</BootstrapperEnabled>
33-
</PropertyGroup>
34-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
35-
<DebugSymbols>true</DebugSymbols>
36-
<DebugType>full</DebugType>
37-
<Optimize>false</Optimize>
38-
<OutputPath>bin\Debug\</OutputPath>
39-
<DefineConstants>TRACE;DEBUG</DefineConstants>
40-
<ErrorReport>prompt</ErrorReport>
41-
<WarningLevel>4</WarningLevel>
42-
<DocumentationFile>bin\Debug\CommandLine.XML</DocumentationFile>
43-
</PropertyGroup>
44-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
45-
<DebugType>pdbonly</DebugType>
46-
<Optimize>true</Optimize>
47-
<OutputPath>bin\Release\</OutputPath>
48-
<DefineConstants>
49-
</DefineConstants>
50-
<ErrorReport>prompt</ErrorReport>
51-
<WarningLevel>4</WarningLevel>
52-
<DocumentationFile>bin\Release\CommandLine.XML</DocumentationFile>
53-
<GenerateDocumentation>true</GenerateDocumentation>
54-
</PropertyGroup>
55-
<PropertyGroup>
56-
<SignAssembly>true</SignAssembly>
57-
</PropertyGroup>
58-
<PropertyGroup>
59-
<AssemblyOriginatorKeyFile>CommandLine.snk</AssemblyOriginatorKeyFile>
60-
</PropertyGroup>
61-
<ItemGroup>
62-
<Reference Include="System" />
63-
</ItemGroup>
64-
<ItemGroup>
65-
<Compile Include="..\SharedAssemblyInfo.cs">
66-
<Link>Properties\SharedAssemblyInfo.cs</Link>
67-
</Compile>
68-
<Compile Include="Attributes\BaseOptionAttribute.cs" />
69-
<Compile Include="Attributes\OptionAttribute.cs" />
70-
<Compile Include="Attributes\OptionArrayAttribute.cs" />
71-
<Compile Include="Attributes\HelpOptionAttribute.cs" />
72-
<Compile Include="Attributes\OptionListAttribute.cs" />
73-
<Compile Include="Attributes\ParserStateAttribute.cs" />
74-
<Compile Include="Attributes\ValueListAttribute.cs" />
75-
<Compile Include="Attributes\ValueOptionAttribute.cs" />
76-
<Compile Include="Extensions\CharExtensions.cs" />
77-
<Compile Include="GlobalSuppressions.cs" />
78-
<Compile Include="Infrastructure\PropertyWriter.cs" />
79-
<Compile Include="IHideObjectMembers.cs" />
80-
<Compile Include="Infrastructure\SR.strings.cs">
81-
<AutoGen>True</AutoGen>
82-
<DesignTime>True</DesignTime>
83-
<DependentUpon>SR.tt</DependentUpon>
84-
</Compile>
85-
<Compile Include="IParserSettings.cs" />
86-
<Compile Include="ParserConfigurator.cs">
87-
<DependentUpon>Parser.cs</DependentUpon>
88-
</Compile>
89-
<Compile Include="Helpers\Assumes.cs" />
90-
<Compile Include="Helpers\ReflectionCache.cs" />
91-
<Compile Include="Extensions\StringExtensions.cs" />
92-
<Compile Include="Helpers\ReflectionUtil.cs" />
93-
<Compile Include="Helpers\Pair.cs" />
94-
<Compile Include="Infrastructure\ValueMapper.cs" />
95-
<Compile Include="Infrastructure\LongOptionParser.cs" />
96-
<Compile Include="Infrastructure\OptionGroupParser.cs" />
97-
<Compile Include="Infrastructure\OptionInfo.cs" />
98-
<Compile Include="Infrastructure\OptionMap.cs" />
99-
<Compile Include="Infrastructure\OneCharStringEnumerator.cs" />
100-
<Compile Include="Infrastructure\StringArrayEnumerator.cs" />
101-
<Compile Include="Infrastructure\ArgumentParser.cs" />
102-
<Compile Include="Infrastructure\IArgumentEnumerator.cs" />
103-
<Compile Include="Infrastructure\PresentParserState.cs" />
104-
<Compile Include="Properties\AssemblyInfo.cs" />
105-
<Compile Include="Text\HelpText.cs" />
106-
<Compile Include="Text\BaseSentenceBuilder.cs" />
107-
<Compile Include="Text\EnglishSentenceBuilder.cs" />
108-
<Compile Include="Text\CopyrightInfo.cs" />
109-
<Compile Include="Text\HeadingInfo.cs" />
110-
<Compile Include="Attributes\MultiLineTextAttribute.cs" />
111-
<Compile Include="Attributes\AssemblyLicenseAttribute.cs" />
112-
<Compile Include="Attributes\AssemblyUsageAttribute.cs" />
113-
<Compile Include="Text\FormatOptionHelpTextEventArgs.cs" />
114-
<Compile Include="Attributes\HelpVerbOptionAttribute.cs" />
115-
<Compile Include="Attributes\VerbOptionAttribute.cs" />
116-
<Compile Include="BadOptionInfo.cs" />
117-
<Compile Include="Parser.cs" />
118-
<Compile Include="ParserException.cs" />
119-
<Compile Include="ParserSettings.cs" />
120-
<Compile Include="IParser.cs" />
121-
<Compile Include="IParserState.cs" />
122-
<Compile Include="ParserState.cs" />
123-
<Compile Include="ParsingError.cs" />
124-
<Compile Include="Extensions\ObjectExtensions.cs" />
125-
</ItemGroup>
126-
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
3+
<PropertyGroup>
4+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6+
<ProductVersion>9.0.30729</ProductVersion>
7+
<SchemaVersion>2.0</SchemaVersion>
8+
<ProjectGuid>{5DEA2811-2FFA-4959-830B-CAD3ACACABEB}</ProjectGuid>
9+
<OutputType>Library</OutputType>
10+
<AppDesignerFolder>Properties</AppDesignerFolder>
11+
<RootNamespace>CommandLine</RootNamespace>
12+
<AssemblyName>CommandLine</AssemblyName>
13+
<FileUpgradeFlags>
14+
</FileUpgradeFlags>
15+
<OldToolsVersion>3.5</OldToolsVersion>
16+
<UpgradeBackupLocation>
17+
</UpgradeBackupLocation>
18+
<IsWebBootstrapper>false</IsWebBootstrapper>
19+
<PublishUrl>publish\</PublishUrl>
20+
<Install>true</Install>
21+
<InstallFrom>Disk</InstallFrom>
22+
<UpdateEnabled>false</UpdateEnabled>
23+
<UpdateMode>Foreground</UpdateMode>
24+
<UpdateInterval>7</UpdateInterval>
25+
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
26+
<UpdatePeriodically>false</UpdatePeriodically>
27+
<UpdateRequired>false</UpdateRequired>
28+
<MapFileExtensions>true</MapFileExtensions>
29+
<ApplicationRevision>0</ApplicationRevision>
30+
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
31+
<UseApplicationTrust>false</UseApplicationTrust>
32+
<BootstrapperEnabled>true</BootstrapperEnabled>
33+
</PropertyGroup>
34+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
35+
<DebugSymbols>true</DebugSymbols>
36+
<DebugType>full</DebugType>
37+
<Optimize>false</Optimize>
38+
<OutputPath>bin\Debug\</OutputPath>
39+
<DefineConstants>TRACE;DEBUG</DefineConstants>
40+
<ErrorReport>prompt</ErrorReport>
41+
<WarningLevel>4</WarningLevel>
42+
<DocumentationFile>bin\Debug\CommandLine.XML</DocumentationFile>
43+
</PropertyGroup>
44+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
45+
<DebugType>pdbonly</DebugType>
46+
<Optimize>true</Optimize>
47+
<OutputPath>bin\Release\</OutputPath>
48+
<DefineConstants>
49+
</DefineConstants>
50+
<ErrorReport>prompt</ErrorReport>
51+
<WarningLevel>4</WarningLevel>
52+
<DocumentationFile>bin\Release\CommandLine.XML</DocumentationFile>
53+
<GenerateDocumentation>true</GenerateDocumentation>
54+
</PropertyGroup>
55+
<PropertyGroup>
56+
<SignAssembly>true</SignAssembly>
57+
</PropertyGroup>
58+
<PropertyGroup>
59+
<AssemblyOriginatorKeyFile>CommandLine.snk</AssemblyOriginatorKeyFile>
60+
</PropertyGroup>
61+
<ItemGroup>
62+
<Reference Include="System" />
63+
</ItemGroup>
64+
<ItemGroup>
65+
<Compile Include="..\SharedAssemblyInfo.cs">
66+
<Link>Properties\SharedAssemblyInfo.cs</Link>
67+
</Compile>
68+
<Compile Include="Attributes\BaseOptionAttribute.cs" />
69+
<Compile Include="Attributes\OptionAttribute.cs" />
70+
<Compile Include="Attributes\OptionArrayAttribute.cs" />
71+
<Compile Include="Attributes\HelpOptionAttribute.cs" />
72+
<Compile Include="Attributes\OptionListAttribute.cs" />
73+
<Compile Include="Attributes\ParserStateAttribute.cs" />
74+
<Compile Include="Attributes\ValueListAttribute.cs" />
75+
<Compile Include="Attributes\ValueOptionAttribute.cs" />
76+
<Compile Include="Extensions\CharExtensions.cs" />
77+
<Compile Include="GlobalSuppressions.cs" />
78+
<Compile Include="Infrastructure\PropertyWriter.cs" />
79+
<Compile Include="IHideObjectMembers.cs" />
80+
<Compile Include="Infrastructure\SR.strings.cs">
81+
<AutoGen>True</AutoGen>
82+
<DesignTime>True</DesignTime>
83+
<DependentUpon>SR.tt</DependentUpon>
84+
</Compile>
85+
<Compile Include="IParserSettings.cs" />
86+
<Compile Include="ParserConfigurator.cs">
87+
<DependentUpon>Parser.cs</DependentUpon>
88+
</Compile>
89+
<Compile Include="Helpers\Assumes.cs" />
90+
<Compile Include="Helpers\ReflectionCache.cs" />
91+
<Compile Include="Extensions\StringExtensions.cs" />
92+
<Compile Include="Helpers\ReflectionUtil.cs" />
93+
<Compile Include="Helpers\Pair.cs" />
94+
<Compile Include="Infrastructure\ValueMapper.cs" />
95+
<Compile Include="Infrastructure\LongOptionParser.cs" />
96+
<Compile Include="Infrastructure\OptionGroupParser.cs" />
97+
<Compile Include="Infrastructure\OptionInfo.cs" />
98+
<Compile Include="Infrastructure\OptionMap.cs" />
99+
<Compile Include="Infrastructure\OneCharStringEnumerator.cs" />
100+
<Compile Include="Infrastructure\StringArrayEnumerator.cs" />
101+
<Compile Include="Infrastructure\ArgumentParser.cs" />
102+
<Compile Include="Infrastructure\IArgumentEnumerator.cs" />
103+
<Compile Include="Infrastructure\PresentParserState.cs" />
104+
<Compile Include="Properties\AssemblyInfo.cs" />
105+
<Compile Include="Text\HelpText.cs" />
106+
<Compile Include="Text\BaseSentenceBuilder.cs" />
107+
<Compile Include="Text\EnglishSentenceBuilder.cs" />
108+
<Compile Include="Text\CopyrightInfo.cs" />
109+
<Compile Include="Text\HeadingInfo.cs" />
110+
<Compile Include="Attributes\MultiLineTextAttribute.cs" />
111+
<Compile Include="Attributes\AssemblyLicenseAttribute.cs" />
112+
<Compile Include="Attributes\AssemblyUsageAttribute.cs" />
113+
<Compile Include="Text\FormatOptionHelpTextEventArgs.cs" />
114+
<Compile Include="Attributes\HelpVerbOptionAttribute.cs" />
115+
<Compile Include="Attributes\VerbOptionAttribute.cs" />
116+
<Compile Include="BadOptionInfo.cs" />
117+
<Compile Include="Parser.cs" />
118+
<Compile Include="ParserException.cs" />
119+
<Compile Include="ParserSettings.cs" />
120+
<Compile Include="IParser.cs" />
121+
<Compile Include="IParserState.cs" />
122+
<Compile Include="ParserState.cs" />
123+
<Compile Include="ParsingError.cs" />
124+
<Compile Include="Extensions\ObjectExtensions.cs" />
125+
</ItemGroup>
126+
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
127127
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
128128
Other similar extension points exist, see Microsoft.Common.targets.
129129
<Target Name="BeforeBuild">
130130
</Target>
131131
<Target Name="AfterBuild">
132132
</Target>
133-
-->
134-
<ItemGroup>
135-
<None Include="CommandLine.snk" />
136-
<None Include="Infrastructure\SR.tt">
137-
<Generator>TextTemplatingFileGenerator</Generator>
138-
<LastGenOutput>SR.strings.cs</LastGenOutput>
139-
</None>
140-
</ItemGroup>
141-
<ItemGroup>
142-
<CodeAnalysisDictionary Include="CustomDictionary.xml" />
143-
</ItemGroup>
144-
<ItemGroup>
145-
<Service Include="{508349B6-6B84-4DF5-91F0-309BEEBAD82D}" />
146-
</ItemGroup>
147-
<PropertyGroup>
148-
<PreBuildEvent>
149-
</PreBuildEvent>
150-
</PropertyGroup>
133+
-->
134+
<ItemGroup>
135+
<None Include="CommandLine.snk" />
136+
<None Include="Infrastructure\SR.tt">
137+
<Generator>TextTemplatingFileGenerator</Generator>
138+
<LastGenOutput>SR.strings.cs</LastGenOutput>
139+
</None>
140+
</ItemGroup>
141+
<ItemGroup>
142+
<CodeAnalysisDictionary Include="CustomDictionary.xml" />
143+
</ItemGroup>
144+
<ItemGroup>
145+
<Service Include="{508349B6-6B84-4DF5-91F0-309BEEBAD82D}" />
146+
</ItemGroup>
147+
<PropertyGroup>
148+
<PreBuildEvent>
149+
</PreBuildEvent>
150+
</PropertyGroup>
151151
</Project>

0 commit comments

Comments
 (0)