24 lines
812 B
C#
24 lines
812 B
C#
using JinianNet.JNTemplate;
|
||
using Microsoft.Extensions.DependencyInjection;
|
||
using System;
|
||
using ZR.Common;
|
||
|
||
namespace ZR.Admin.WebApi.Extensions
|
||
{
|
||
public static class LogoExtension
|
||
{
|
||
public static void AddLogo(this IServiceCollection services)
|
||
{
|
||
Console.ForegroundColor = ConsoleColor.Blue;
|
||
var contentTpl = JnHelper.ReadTemplate("", "logo.txt");
|
||
var content = contentTpl.Render();
|
||
|
||
Console.WriteLine(content);
|
||
Console.ForegroundColor = ConsoleColor.Red;
|
||
Console.WriteLine("源码地址: https://gitee.com/izory/ZrAdminNetCore");
|
||
Console.WriteLine("官方文档:http://www.izhaorui.cn/doc");
|
||
Console.WriteLine("打赏作者:http://www.izhaorui.cn/doc/support.html");
|
||
}
|
||
}
|
||
}
|