Skip to content

Commit 2aa05ef

Browse files
committed
updated licence, and updated readme to contain teamcity latest
1 parent a5ceb80 commit 2aa05ef

File tree

2 files changed

+36
-3
lines changed

2 files changed

+36
-3
lines changed

LICENCE.txt

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
FreeBSD License
2+
3+
Fluent Command Line Parser
4+
Copyright (c) 2012 - 2013, Simon Williams
5+
All rights reserved.
6+
7+
Redistribution and use in source and binary forms, with or without modification, are permitted provide
8+
d that the following conditions are met:
9+
10+
Redistributions of source code must retain the above copyright notice, this list of conditions and the
11+
following disclaimer.
12+
13+
Redistributions in binary form must reproduce the above copyright notice, this list of conditions and
14+
the following disclaimer in the documentationand/or other materials provided with the distribution.
15+
16+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED
17+
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
18+
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
19+
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
20+
TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21+
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
22+
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
23+
POSSIBILITY OF SUCH DAMAGE.

README.md

+13-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,13 @@ A simple, strongly typed .NET C# command line parser library using a fluent easy
66

77
### Download
88

9-
Available through [NuGet](http://nuget.org/packages/FluentCommandLineParser/)
9+
You can download the latest release from [CodeBetter's TeamCity server](http://teamcity.codebetter.com/project.html?projectId=project314)
10+
11+
You can also install using [NuGet](http://nuget.org/packages/FluentCommandLineParser/)
12+
13+
```
14+
PM> Install-Package FluentCommandLineParser
15+
```
1016

1117
***
1218

@@ -51,7 +57,7 @@ static void Main(string[] args)
5157

5258
### Setup Help
5359

54-
Setup to print the available option to the console when any of the help args are found.
60+
Setup to print the available options to the console when any of the help args are found.
5561

5662
```
5763
static void Main(string[] args)
@@ -77,4 +83,8 @@ Also supports boolean names
7783
updaterecord.exe -s // enabled
7884
updaterecord.exe -s- // disabled
7985
updaterecord.exe -s+ // enabled
80-
```
86+
```
87+
88+
### Contribute
89+
90+
Contributions to the [develop branch](https://github.com/fclp/fluent-command-line-parser/tree/develop) please.

0 commit comments

Comments
 (0)