Skip to content
This repository has been archived by the owner on Mar 1, 2021. It is now read-only.

Commit

Permalink
Merge pull request #29 from adamralph/version
Browse files Browse the repository at this point in the history
update version to 4.0.0
  • Loading branch information
adamralph committed Oct 16, 2016
2 parents 9e8197e + 6bcb2f8 commit 08bb2b0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -15,9 +15,9 @@ Simple target runner for use in C# scripts.

using static SimpleTargets;

var targets = new Dictionary<string, Target>();
var targets = new TargetDictionary();

targets.Add("default", new Target(() => Console.WriteLine("Hello, world!")));
targets.Add("default", () => Console.WriteLine("Hello, world!"));

Run(Args, targets);
```
Expand Down
2 changes: 1 addition & 1 deletion src/simple-targets-csharp.nuspec
Expand Up @@ -2,7 +2,7 @@
<package >
<metadata>
<id>simple-targets-csharp</id>
<version>3.0.0</version>
<version>4.0.0</version>
<authors>Adam Ralph, simple-targets-csharp contributors</authors>
<licenseUrl>https://raw.githubusercontent.com/adamralph/simple-targets-csharp/master/LICENSE</licenseUrl>
<projectUrl>https://github.com/adamralph/simple-targets-csharp</projectUrl>
Expand Down

0 comments on commit 08bb2b0

Please sign in to comment.