8 references to ProjectInfo
Aspire.EndToEnd.Tests (8)
IntegrationServicesFixture.cs (3)
27public Dictionary<string, ProjectInfo> Projects => Project?.InfoTable ?? throw new InvalidOperationException("Project is not initialized"); 35public ProjectInfo IntegrationServiceA => Projects["integrationservicea"]; 86foreach (var project in Projects.Values)
tests\Shared\WorkloadTesting\AspireProject.cs (3)
34public Dictionary<string, ProjectInfo> InfoTable { get; private set; } = new(capacity: 0); 164InfoTable = ProjectInfo.Parse(line.Substring("$ENDPOINTS: ".Length)); 256foreach (var project in InfoTable.Values)
tests\Shared\WorkloadTesting\ProjectInfo.cs (2)
59public static Dictionary<string, ProjectInfo> Parse(string json) => 60JsonSerializer.Deserialize<Dictionary<string, ProjectInfo>>(json)!;