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