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