AspNetCore.Docs.Samples/fundamentals/host/TimedBackgroundTasks/Program.cs

8 lines
199 B
C#
Raw Permalink Normal View History

using TimedBackgroundTasks;
HostApplicationBuilder builder = Host.CreateApplicationBuilder(args);
builder.Services.AddHostedService<TimedHostedService>();
IHost host = builder.Build();
host.Run();