LogoExtension.cs 856 B

12345678910111213141516171819202122
  1. namespace Admin.NET.Core;
  2. /// <summary>
  3. /// logo显示
  4. /// </summary>
  5. public static class LogoExtension
  6. {
  7. public static void AddLogoDisplay(this IServiceCollection services)
  8. {
  9. Console.ForegroundColor = ConsoleColor.Blue;
  10. Console.WriteLine(@" ___ _ _ _ _ _____ _____
  11. / _ \ | | (_) | \ | || ___|_ _|
  12. / /_\ \ __| |_ __ ___ _ _ __ | \| || |__ | |
  13. | _ |/ _` | '_ ` _ \| | '_ \ | . ` || __| | |
  14. | | | | (_| | | | | | | | | | |_| |\ || |___ | |
  15. \_| |_/\__,_|_| |_| |_|_|_| |_(_)_| \_/\____/ \_/ ");
  16. Console.ForegroundColor = ConsoleColor.Red;
  17. Console.WriteLine(@"源码地址: https://gitee.com/zuohuaijun/Admin.NET");
  18. Console.ForegroundColor = ConsoleColor.Yellow;
  19. Console.WriteLine(@"让.NET更简单、更通用、更流行!");
  20. }
  21. }