1 write to App
TestProject.AppHost (1)
TestProgram.cs (1)
156return App ??= AppBuilder.Build();
4 references to App
Aspire.Hosting.Tests (1)
SlimTestProgramTests.cs (1)
35var 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)
165public void Dispose() => App?.Dispose();