Ejemplo n.º 1
0
        public static void Main(string[] args)
        {
            var host = new WebHostBuilder()
                .UseKestrel()
                .UseContentRoot(Directory.GetCurrentDirectory())
                .UseIISIntegration()
                .UseStartup<Startup>()
                .Build();

            if (args.Contains("--service", StringComparer.OrdinalIgnoreCase))
            {
#if NET461
                host.RunAsService();
#else
                Console.Error.WriteLine("ERROR --service not supported on this platform");
                Environment.Exit(1);
#endif
            }
            else
            {
                host.Run();
            }
        }