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