21 lines
543 B
C#
21 lines
543 B
C#
![]() |
using Microsoft.Extensions.DependencyInjection;
|
||
|
using Microsoft.Extensions.Hosting;
|
||
|
|
||
|
namespace ActionBlockTest
|
||
|
{
|
||
|
public class Program
|
||
|
{
|
||
|
public static void Main(string[] args)
|
||
|
{
|
||
|
CreateHostBuilder(args).Build().Run();
|
||
|
}
|
||
|
|
||
|
public static IHostBuilder CreateHostBuilder(string[] args) =>
|
||
|
Host.CreateDefaultBuilder(args)
|
||
|
.ConfigureServices((hostContext, services) =>
|
||
|
{
|
||
|
services.AddHostedService<Worker>();
|
||
|
});
|
||
|
}
|
||
|
}
|