Skip to content

Instantly share code, notes, and snippets.

@Sam13
Last active March 9, 2017 11:56
Show Gist options
  • Save Sam13/fbcef707aec67f8c7274230fc1f9c6ec to your computer and use it in GitHub Desktop.
Save Sam13/fbcef707aec67f8c7274230fc1f9c6ec to your computer and use it in GitHub Desktop.
// Uncomment to get it working
// #l Build2.cake
#load nuget:?package=BuildScripts.Cake
#l Build2.cake
Task("Hello1")
.Does(() =>
{
Console.WriteLine("Hello1");
});
RunTarget(Argument("target", string.Empty));
Task("Hello2")
.Does(() =>
{
Console.WriteLine("Hello2");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment