using System.Net; using GServer.Server.Business.Services; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; namespace GServer.Server; // ReSharper disable once ClassNeverInstantiated.Global internal sealed class Program { private const int ListenPort = 11000; private static async Task Main(string[] args) { HostApplicationBuilder builder = Host.CreateApplicationBuilder(args); // Register services _ = builder.Services.AddScoped(); _ = builder.Services.AddScoped(); _ = builder.Services.AddTransient((services) => new TcpGameServer( new IPEndPoint(IPAddress.Any, ListenPort), services.GetRequiredService() )); // Start service using IHost host = builder.Build(); ApplicationLifetime(host.Services); await host.RunAsync(); } private static void ApplicationLifetime(IServiceProvider hostProvider) { Thread serverWorker = new(() => { using IServiceScope serviceScope = hostProvider.CreateScope(); ITcpGameServer server = serviceScope.ServiceProvider.GetRequiredService(); server.StartAsync(); while (true) { // Sleep to not consume too much CPU while waiting Thread.Sleep(1000); } }); serverWorker.Start(); serverWorker.Join(); // Wait for the thread to complete before disposing the scope } }