You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
537 B
C#

using EntrustSettle.Common;
using Microsoft.AspNetCore.Builder;
namespace EntrustSettle.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;
NLog.LogManager.Flush();
NLog.LogManager.Shutdown();
});
}
}