mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-15 14:06:51 +08:00
10 lines
310 B
C#
10 lines
310 B
C#
|
|
using Yi.Abp.Web;
|
||
|
|
|
||
|
|
var builder = WebApplication.CreateBuilder(args);
|
||
|
|
builder.WebHost.UseUrls(builder.Configuration["App:SelfUrl"]);
|
||
|
|
builder.Host.UseAutofac();
|
||
|
|
await builder.Services.AddApplicationAsync<YiAbpWebModule>();
|
||
|
|
var app = builder.Build();
|
||
|
|
await app.InitializeApplicationAsync();
|
||
|
|
await app.RunAsync();
|