24 lines
527 B
C#
24 lines
527 B
C#
|
|
using DouyinApi.Common;
|
|||
|
|
using Microsoft.AspNetCore.Builder;
|
|||
|
|
using Serilog;
|
|||
|
|
|
|||
|
|
namespace DouyinApi.Extensions.ServiceExtensions;
|
|||
|
|
|
|||
|
|
public static class ApplicationSetup
|
|||
|
|
{
|
|||
|
|
public static void UseApplicationSetup(this WebApplication app)
|
|||
|
|
{
|
|||
|
|
app.Lifetime.ApplicationStarted.Register(() =>
|
|||
|
|
{
|
|||
|
|
App.IsRun = true;
|
|||
|
|
});
|
|||
|
|
|
|||
|
|
app.Lifetime.ApplicationStopped.Register(() =>
|
|||
|
|
{
|
|||
|
|
App.IsRun = false;
|
|||
|
|
|
|||
|
|
//清除日志
|
|||
|
|
Log.CloseAndFlush();
|
|||
|
|
});
|
|||
|
|
}
|
|||
|
|
}
|