mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-15 15:19:57 +00:00
12 lines
295 B
C#
12 lines
295 B
C#
namespace Daybreak.API.Hosting;
|
|
|
|
public static class WebApplicationBuilderExtensions
|
|
{
|
|
public static WebApplicationBuilder WithHosting(this WebApplicationBuilder builder, int port)
|
|
{
|
|
builder.WebHost.ConfigureKestrel(o => o.ListenAnyIP(port));
|
|
|
|
return builder;
|
|
}
|
|
}
|