11 references to _innerBuilder
Aspire.Hosting.Testing (11)
DistributedApplicationTestingBuilder.cs (11)
375
public ConfigurationManager Configuration =>
_innerBuilder
.Configuration;
377
public string AppHostDirectory =>
_innerBuilder
.AppHostDirectory;
379
public Assembly? AppHostAssembly =>
_innerBuilder
.AppHostAssembly;
381
public IHostEnvironment Environment =>
_innerBuilder
.Environment;
383
public IServiceCollection Services =>
_innerBuilder
.Services;
385
public DistributedApplicationExecutionContext ExecutionContext =>
_innerBuilder
.ExecutionContext;
387
public IResourceCollection Resources =>
_innerBuilder
.Resources;
389
public IDistributedApplicationEventing Eventing =>
_innerBuilder
.Eventing;
391
public IResourceBuilder<T> AddResource<T>(T resource) where T : IResource =>
_innerBuilder
.AddResource(resource);
396
return _app =
_innerBuilder
.Build();
405
public IResourceBuilder<T> CreateResourceBuilder<T>(T resource) where T : IResource =>
_innerBuilder
.CreateResourceBuilder(resource);