2 implementations of IAppHostServerSessionFactory
aspire (1)
Projects\AppHostServerSession.cs (1)
466internal sealed class AppHostServerSessionFactory : IAppHostServerSessionFactory
Aspire.Cli.Tests (1)
TestServices\FakeAppHostServerSession.cs (1)
82internal sealed class FakeAppHostServerSessionFactory : IAppHostServerSessionFactory
23 references to IAppHostServerSessionFactory
aspire (12)
Commands\Sdk\SdkDumpCommand.cs (2)
37private readonly IAppHostServerSessionFactory _serverSessionFactory; 60IAppHostServerSessionFactory serverSessionFactory,
Commands\Sdk\SdkExportCommand.cs (2)
31private readonly IAppHostServerSessionFactory _serverSessionFactory; 48IAppHostServerSessionFactory serverSessionFactory,
Commands\Sdk\SdkGenerateCommand.cs (2)
23private readonly IAppHostServerSessionFactory _serverSessionFactory; 44IAppHostServerSessionFactory serverSessionFactory,
Program.cs (1)
510builder.Services.AddSingleton<IAppHostServerSessionFactory, AppHostServerSessionFactory>();
Projects\AppHostServerSession.cs (1)
460/// Default <see cref="IAppHostServerSessionFactory"/> that constructs real
Projects\GuestAppHostProject.cs (2)
57private readonly IAppHostServerSessionFactory _serverSessionFactory; 88IAppHostServerSessionFactory serverSessionFactory,
Scaffolding\ScaffoldingService.cs (2)
43private readonly IAppHostServerSessionFactory _serverSessionFactory; 53IAppHostServerSessionFactory serverSessionFactory,
Aspire.Cli.Tests (11)
Commands\NewCommandTemplateConfigPersistenceTests.cs (2)
271services.AddSingleton<IAppHostServerSessionFactory>( 387services.AddSingleton<IAppHostServerSessionFactory>(
Commands\Sdk\SdkExportCommandTests.cs (1)
393services.AddSingleton<IAppHostServerSessionFactory>(new FakeAppHostServerSessionFactory
Projects\GuestAppHostProjectTests.cs (3)
1364IAppHostServerSessionFactory sessionFactory = new FakeAppHostServerSessionFactory(); 1453IAppHostServerSessionFactory sessionFactory = new FakeAppHostServerSessionFactory(); 1526IAppHostServerSessionFactory? serverSessionFactory = null,
TestServices\FakeAppHostServerSession.cs (1)
79/// Fake <see cref="IAppHostServerSessionFactory"/> that hands back a <see cref="FakeAppHostServerSession"/>
TestServices\FakeSucceedingAppHostServerProject.cs (1)
12/// <see cref="IAppHostServerSessionFactory"/>) that bypasses <see cref="AppHostServerSession"/>,
Utils\CliTestHelper.cs (3)
186services.AddSingleton<IAppHostServerSessionFactory, AppHostServerSessionFactory>(); 546var serverSessionFactory = serviceProvider.GetRequiredService<IAppHostServerSessionFactory>();