mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-05 05:27:37 +08:00
cc836bcf10
* 使MenItem同时支持Icon和IconFont,解决当使用iconfont.cn图标后,缩起内嵌菜单导致按钮样式不统一的问题。 * 空值判断 * add IconTemplate in MenuItem * code format * Add AuthorizeReuseTabsRouteView * add readme.md * remove comments * Add AuthorizeResuseTabsRouteView test demo * save * save * done * refactor the test app * fix test app * debug * debug * fix tab render * fix the copyright * fix package infomation * fix tab display order * fix content focerender Co-authored-by: BG345554 <ymgu@best-inc.com> Co-authored-by: James Yeung <shunjiey@hotmail.com>
27 lines
709 B
C#
27 lines
709 B
C#
using Microsoft.AspNetCore.Hosting;
|
|
using Microsoft.Extensions.Configuration;
|
|
using Microsoft.Extensions.Hosting;
|
|
using Microsoft.Extensions.Logging;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AntDesign.TestApp.Server
|
|
{
|
|
public class Program
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
CreateHostBuilder(args).Build().Run();
|
|
}
|
|
|
|
public static IHostBuilder CreateHostBuilder(string[] args) =>
|
|
Host.CreateDefaultBuilder(args)
|
|
.ConfigureWebHostDefaults(webBuilder =>
|
|
{
|
|
webBuilder.UseStartup<Startup>();
|
|
});
|
|
}
|
|
}
|