Temporary repo to track my changes on LTS functions app porting
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.

14 lines
392 B

  1. using Microsoft.Azure.Functions.Worker;
  2. using Microsoft.Extensions.DependencyInjection;
  3. using Microsoft.Extensions.Hosting;
  4. var host = new HostBuilder()
  5. .ConfigureFunctionsWebApplication()
  6. .ConfigureServices(services =>
  7. {
  8. services.AddApplicationInsightsTelemetryWorkerService();
  9. services.ConfigureFunctionsApplicationInsights();
  10. })
  11. .Build();
  12. host.Run();