We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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); } }