11 references to _innerBuilder
Aspire.Hosting.Testing (11)
DistributedApplicationTestingBuilder.cs (11)
342
public ConfigurationManager Configuration =>
_innerBuilder
.Configuration;
344
public string AppHostDirectory =>
_innerBuilder
.AppHostDirectory;
346
public Assembly? AppHostAssembly =>
_innerBuilder
.AppHostAssembly;
348
public IHostEnvironment Environment =>
_innerBuilder
.Environment;
350
public IServiceCollection Services =>
_innerBuilder
.Services;
352
public DistributedApplicationExecutionContext ExecutionContext =>
_innerBuilder
.ExecutionContext;
354
public IResourceCollection Resources =>
_innerBuilder
.Resources;
356
public IDistributedApplicationEventing Eventing =>
_innerBuilder
.Eventing;
358
public IResourceBuilder<T> AddResource<T>(T resource) where T : IResource =>
_innerBuilder
.AddResource(resource);
363
return _app =
_innerBuilder
.Build();
372
public IResourceBuilder<T> CreateResourceBuilder<T>(T resource) where T : IResource =>
_innerBuilder
.CreateResourceBuilder(resource);