Skip to content
Adam Ralph edited this page Nov 24, 2019 · 11 revisions

Follow the sync quick start but use this code instead:

using System.Threading.Tasks;
using static Bullseye.Targets;

class Program
{
    static async Task Main(string[] args)
    {
        Target("default", async () => await System.Console.Out.WriteLineAsync("Hello, world!"));
        await RunTargetsAndExitAsync(args);
    }
}
Clone this wiki locally