Admin.net框架
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

22 lines
856 B

namespace Admin.NET.Core;
/// <summary>
/// logo显示
/// </summary>
public static class LogoExtension
{
public static void AddLogoDisplay(this IServiceCollection services)
{
Console.ForegroundColor = ConsoleColor.Blue;
Console.WriteLine(@" ___ _ _ _ _ _____ _____
/ _ \ | | (_) | \ | || ___|_ _|
/ /_\ \ __| |_ __ ___ _ _ __ | \| || |__ | |
| _ |/ _` | '_ ` _ \| | '_ \ | . ` || __| | |
| | | | (_| | | | | | | | | | |_| |\ || |___ | |
\_| |_/\__,_|_| |_| |_|_|_| |_(_)_| \_/\____/ \_/ ");
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine(@"源码地址: https://gitee.com/zuohuaijun/Admin.NET");
Console.ForegroundColor = ConsoleColor.Yellow;
Console.WriteLine(@"让.NET更简单、更通用、更流行!");
}
}