LANCommander/LANCommander.Server/Startup/Daemon.cs
2025-03-11 21:21:16 -05:00

16 lines
No EOL
369 B
C#

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;
}
}