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