25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- using System;
- using System.Reflection;
- using Microsoft.AspNetCore;
- using Microsoft.AspNetCore.Hosting;
- using MQTTnet.Server.Web;
-
- namespace MQTTnet.Server
- {
- public static class Program
- {
- public static int Main(string[] args)
- {
- try
- {
- PrintLogo();
-
- WebHost.CreateDefaultBuilder(args).UseStartup<Startup>().Build().Run();
-
- return 0;
- }
- catch (Exception exception)
- {
- Console.WriteLine(exception);
- return -1;
- }
- }
-
- private static void PrintLogo()
- {
- Console.ResetColor();
- Console.ForegroundColor = ConsoleColor.Red;
- const string LogoText =
- @"
-
- ███╗ ███╗ ██████╗ ████████╗████████╗███╗ ██╗███████╗████████╗ ███████╗███████╗██████╗ ██╗ ██╗███████╗██████╗
- ████╗ ████║██╔═══██╗╚══██╔══╝╚══██╔══╝████╗ ██║██╔════╝╚══██╔══╝ ██╔════╝██╔════╝██╔══██╗██║ ██║██╔════╝██╔══██╗
- ██╔████╔██║██║ ██║ ██║ ██║ ██╔██╗ ██║█████╗ ██║ ███████╗█████╗ ██████╔╝██║ ██║█████╗ ██████╔╝
- ██║╚██╔╝██║██║▄▄ ██║ ██║ ██║ ██║╚██╗██║██╔══╝ ██║ ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██╔══╝ ██╔══██╗
- ██║ ╚═╝ ██║╚██████╔╝ ██║ ██║ ██║ ╚████║███████╗ ██║ ███████║███████╗██║ ██║ ╚████╔╝ ███████╗██║ ██║
- ╚═╝ ╚═╝ ╚══▀▀═╝ ╚═╝ ╚═╝ ╚═╝ ╚═══╝╚══════╝ ╚═╝ ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚══════╝╚═╝ ╚═╝
-
- ";
-
- Console.WriteLine(LogoText);
- Console.ResetColor();
- Console.WriteLine();
- Console.ForegroundColor = ConsoleColor.White;
- Console.WriteLine("The official MQTT server implementation of MQTTnet");
- Console.WriteLine("Copyright (c) 2017-2019 The MQTTnet Team");
- Console.WriteLine(@"https://github.com/chkr1011/MQTTnet");
-
- Console.ForegroundColor = ConsoleColor.White;
- Console.WriteLine($@"
- Version: {Assembly.GetExecutingAssembly().GetCustomAttribute<AssemblyInformationalVersionAttribute>().InformationalVersion}
- License: MIT (read LICENSE file)
- Sponsoring: https://opencollective.com/mqttnet
- Support: https://github.com/chkr1011/MQTTnet/issues
- Docs: https://github.com/chkr1011/MQTTnet/wiki/MQTTnetServer
- ");
-
- Console.ForegroundColor = ConsoleColor.Red;
- Console.WriteLine(" ! THIS IS AN ALPHA VERSION! IT IS NOT RECOMMENDED TO USE IT FOR ANY DIFFERENT PURPOSE THAN TESTING OR EVALUATING!");
- Console.ResetColor();
- Console.WriteLine();
- }
- }
- }
|