microsoft / ApplicationInsights-Profiler-AspNetCore

Application Insights Profiler sample and documentation
MIT License
66 stars 23 forks source link

Look into replacing `StartupFilter` with `BackgroundService` #167

Closed xiaomi7732 closed 1 year ago

xiaomi7732 commented 2 years ago

StartupFilter works only with ASP.NET Core; BackgroundService works for both ASP.NET Core and Generic Host (Worker). Verify it works for the Console Application (where there's no host) too.

xiaomi7732 commented 2 years ago

FYI: https://docs.microsoft.com/en-us/aspnet/core/fundamentals/host/hosted-services?view=aspnetcore-6.0&tabs=visual-studio

Very much related to #140