diff --git a/README.md b/README.md index 234c910..d56c7dd 100644 --- a/README.md +++ b/README.md @@ -15,9 +15,9 @@ Simple target runner for use in C# scripts. using static SimpleTargets; -var targets = new Dictionary(); +var targets = new TargetDictionary(); -targets.Add("default", new Target(() => Console.WriteLine("Hello, world!"))); +targets.Add("default", () => Console.WriteLine("Hello, world!")); Run(Args, targets); ``` diff --git a/src/simple-targets-csharp.nuspec b/src/simple-targets-csharp.nuspec index 75a1b1e..234b1b1 100644 --- a/src/simple-targets-csharp.nuspec +++ b/src/simple-targets-csharp.nuspec @@ -2,7 +2,7 @@ simple-targets-csharp - 3.0.0 + 4.0.0 Adam Ralph, simple-targets-csharp contributors https://raw.githubusercontent.com/adamralph/simple-targets-csharp/master/LICENSE https://github.com/adamralph/simple-targets-csharp