1 write to App
TestProject.AppHost (1)
TestProgram.cs (1)
153return App ??= AppBuilder.Build();
4 references to App
Aspire.Hosting.Tests (1)
SlimTestProgramTests.cs (1)
34var app = testProgram.App ?? throw new ArgumentException("TestProgram.App is null");
TestProject.AppHost (3)
Program.cs (2)
13if (testProgram.App is not null) 15await testProgram.App.StopAsync();
TestProgram.cs (1)
162public void Dispose() => App?.Dispose();