1 write to Project
Aspire.Workload.Tests (1)
TemplateAppFixture.cs (1)
36Project = await AspireProject.CreateNewTemplateProjectAsync(
15 references to Project
Aspire.Workload.Tests (15)
EmptyTemplateRunTests.cs (1)
25await _testFixture.Project!.OpenDashboardPageAsync(context),
StarterTemplateRunTestsBase.cs (5)
30await _testFixture.Project!.OpenDashboardPageAsync(context).ConfigureAwait(false), 31GetExpectedResources(_testFixture.Project!, hasRedisCache: HasRedisCache), 43await _testFixture.Project!.OpenDashboardPageAsync(context).ConfigureAwait(false), 44GetExpectedResources(_testFixture.Project!, hasRedisCache: HasRedisCache), 49await CheckWebFrontendWorksAsync(context, url, _testOutput, _testFixture.Project.LogPath, hasRedisCache: HasRedisCache);
TemplateAppFixture.cs (9)
43await Project.BuildAsync(extraBuildArgs: [$"-c {_config}"]); 44await Project.StartAppHostAsync(extraArgs: [$"-c {_config}"]); 49if (Project is not null) 51await Project.DisposeAsync(); 57if (Project!.AppHostProcess is null || Project.AppHostProcess.HasExited || Project.AppExited?.Task.IsCompleted == true) 59throw new InvalidOperationException($"The app host process is not running. {Project.AppHostProcess?.HasExited}, {Project.AppExited?.Task.IsCompleted}");