6 references to JsonArray
aspire (2)
src\Shared\ConsoleLogs\SharedAIHelpers.cs (2)
236linksArray = new JsonArray(linkObjects); 266var spanArray = new JsonArray(spanObjects.ToArray());
Aspire.Dashboard (2)
src\Shared\ConsoleLogs\SharedAIHelpers.cs (2)
236linksArray = new JsonArray(linkObjects); 266var spanArray = new JsonArray(spanObjects.ToArray());
Microsoft.NET.Build.Containers (2)
ImageConfig.cs (2)
151["history"] = new JsonArray(_history.Select(CreateHistory).ToArray<JsonNode>()) 156static JsonArray ToJsonArray(IEnumerable<string> items) => new(items.Where(s => !string.IsNullOrEmpty(s)).Select(s => JsonValue.Create(s)).ToArray<JsonNode?>());