5 references to ProjectInfo
Aspire.Templates.Tests (5)
tests\Shared\TemplatesTesting\AspireProject.cs (3)
35
public Dictionary<string,
ProjectInfo
> InfoTable { get; private set; } = new(capacity: 0);
220
InfoTable =
ProjectInfo
.Parse(line.Substring("$ENDPOINTS: ".Length));
312
foreach (
var
project in InfoTable.Values)
tests\Shared\TemplatesTesting\ProjectInfo.cs (2)
59
public static Dictionary<string,
ProjectInfo
> Parse(string json) =>
60
JsonSerializer.Deserialize<Dictionary<string,
ProjectInfo
>>(json)!;