|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Net;
using Microsoft.AspNetCore.SignalR;
using SignalRSamples.Hubs;
namespace SignalRSamples;
public class Program
{
public static Task Main(string[] args)
{
var config = new ConfigurationBuilder()
.AddCommandLine(args)
.Build();
var host = Host.CreateDefaultBuilder(args)
.ConfigureWebHost(webHostBuilder =>
{
webHostBuilder
.UseConfiguration(config)
.UseSetting(WebHostDefaults.PreventHostingStartupKey, "true")
.ConfigureLogging((c, factory) =>
{
factory.AddConfiguration(c.Configuration.GetSection("Logging"));
factory.AddConsole();
factory.SetMinimumLevel(LogLevel.Debug);
})
.UseKestrel(options =>
{
// Default port
options.ListenAnyIP(5000);
// Hub bound to TCP end point
//options.Listen(IPAddress.Any, 9001, builder =>
//{
// builder.UseHub<Chat>();
//});
})
.UseContentRoot(Directory.GetCurrentDirectory())
.UseIISIntegration()
.UseStartup<Startup>();
}).Build();
return host.RunAsync();
}
}
|