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.
 
 
 

24 lines
531 B

using Tiobon.Core.Common;
using Microsoft.AspNetCore.Builder;
using Serilog;
namespace Tiobon.Core.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();
});
}
}