AspNetCore.AsyncInitialization icon indicating copy to clipboard operation
AspNetCore.AsyncInitialization copied to clipboard

Async initialization in ASP.NET Core 2.x

Results 2 AspNetCore.AsyncInitialization issues
Sort by recently updated
recently updated
newest added

Let's say I have a bunch of initializers that do things like prime a cache, retrieve configuration data from some separate service, etc. It would be nice if I could...

enhancement

I have a simple initializer with defined `ActivitySource`. When I call `StartActivity` I always get `null` despite source name is registered in `WithTracing` method: ``` builder.Services.AddOpenTelemetry() .WithTracing(builder => { builder...