LANCommander/LANCommander.Server/Startup/Daemon.cs

16 lines
369 B
C#
Raw Permalink Normal View History

2025-03-11 21:21:16 -05:00
namespace LANCommander.Server.Startup;
public static class Daemon
{
public static WebApplicationBuilder AddAsService(this WebApplicationBuilder builder)
{
builder.Services.AddWindowsService(options =>
{
options.ServiceName = "LANCommander Server";
});
builder.Services.AddSystemd();
return builder;
}
}