Вот пример:
Код: Выделить всё
static void Main(string[] args)
{
var builder = Host.CreateApplicationBuilder(args);
builder.UseNLog();
builder.Services.AddWindowsService();
builder.Services.AddMetrics(c => throw new Exception("WTF"));
var host = builder.Build();
host.Run();
}
Подробнее здесь: https://stackoverflow.com/questions/798 ... on-failure