Skip to content

Instantly share code, notes, and snippets.

@dcomartin
Created August 30, 2018 16:58
Embed
What would you like to do?
using System;
using static Bullseye.Targets;
namespace bulltest
{
class Program
{
static void Main(string[] args)
{
Target("default", () => {
Console.WriteLine("My Default Task!");
});
RunTargets(args);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment