Ejemplo n.º 1
0
        public static void Main(string[] args)
        {
            ThreadTask threadTask = new ThreadTask();

            try
            {
                threadTask.Start();
                BuildWebHost(args).Run();

                threadTask.Stop();
            }
            catch
            {
                threadTask.Stop();
            }
        }