Implemented interface member:
property
Services
Aspire.Hosting.IDistributedApplicationBuilder.Services
9 references to Services
Aspire.Hosting.Testing (9)
DistributedApplicationFactory.cs (5)
355var services = applicationBuilder.Services; 540var hostDescriptor = applicationBuilder.Services.Single(s => s.ServiceType == typeof(IHost) && s.ServiceKey is null); 541applicationBuilder.Services.Remove(hostDescriptor); 551applicationBuilder.Services.Add(interceptedDescriptor); 554applicationBuilder.Services.AddSingleton<IHost>(sp => new ObservedHost(sp.GetRequiredKeyedService<IHost>(this), this));
DistributedApplicationTestingBuilder.cs (4)
524public IServiceCollection Services => innerBuilder.Services; 649builder.Services.AddHttpClient(); 650builder.Services.ConfigureHttpClientDefaults(http => http.AddStandardResilienceHandler()); 687public IServiceCollection Services => _innerBuilder.Services;