You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
744 B
21 lines
744 B
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Microsoft.Extensions.Hosting;
|
|
|
|
namespace hass_workstation_service.ServiceHost
|
|
{
|
|
|
|
public static class ServiceBaseLifetimeHostExtensions
|
|
{
|
|
public static IHostBuilder UseServiceBaseLifetime(this IHostBuilder hostBuilder)
|
|
{
|
|
return hostBuilder.ConfigureServices((hostContext, services) => services.AddSingleton<IHostLifetime, ServiceBaseLifetime>());
|
|
}
|
|
|
|
public static Task RunAsServiceAsync(this IHostBuilder hostBuilder, CancellationToken cancellationToken = default)
|
|
{
|
|
return hostBuilder.UseServiceBaseLifetime().Build().RunAsync(cancellationToken);
|
|
}
|
|
}
|
|
} |