Skip to content

Instantly share code, notes, and snippets.

@aevitas
Created November 21, 2019 14:55
Show Gist options
  • Save aevitas/c1b1c8fe3b273b2473c33734753ec73e to your computer and use it in GitHub Desktop.
Save aevitas/c1b1c8fe3b273b2473c33734753ec73e to your computer and use it in GitHub Desktop.
public static IHostBuilder CreateHostBuilder(string[] args) =>
Host.CreateDefaultBuilder(args)
.ConfigureServices((hostContext, services) =>
{
services.AddHostedService<Worker>();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment