3 implementations of AppHostAssembly
Aspire.Hosting (1)
DistributedApplicationBuilder.cs (1)
88
public Assembly?
AppHostAssembly
=> _options.Assembly;
Aspire.Hosting.Testing (2)
DistributedApplicationTestingBuilder.cs (2)
236
public Assembly?
AppHostAssembly
=> innerBuilder.AppHostAssembly;
390
public Assembly?
AppHostAssembly
=> _innerBuilder.AppHostAssembly;
2 references to AppHostAssembly
Aspire.Hosting.Testing (2)
DistributedApplicationTestingBuilder.cs (2)
475
/// <inheritdoc cref="IDistributedApplicationBuilder.
AppHostAssembly
" />
476
new Assembly? AppHostAssembly => ((IDistributedApplicationBuilder)this).
AppHostAssembly
;