7 writes to Summary
aspire (1)
Mcp\Docs\DocsIndexService.cs (1)
205
Summary
= d.Source.Summary
Aspire.Cli.Tests (6)
Commands\DocsCommandTests.cs (3)
184
new() { Title = "Redis Integration", Slug = "redis-integration",
Summary
= "Learn how to use Redis" },
185
new() { Title = "PostgreSQL Integration", Slug = "postgresql-integration",
Summary
= "Learn how to use PostgreSQL" },
186
new() { Title = "Getting Started", Slug = "getting-started",
Summary
= "Get started with Aspire" }
Mcp\TestDocsIndexService.cs (3)
15
new DocsListItem { Slug = "getting-started", Title = "Getting Started",
Summary
= "Learn how to get started with Aspire" },
16
new DocsListItem { Slug = "fundamentals/app-host", Title = "App Host",
Summary
= "Learn about the Aspire app host" },
17
new DocsListItem { Slug = "deployment/azure", Title = "Deploy to Azure",
Summary
= "Deploy your Aspire app to Azure" },
7 references to Summary
aspire (3)
Commands\DocsListCommand.cs (1)
87
Markup.Escape(doc.
Summary
?? "-"));
Mcp\Tools\ListDocsTool.cs (2)
65
if (!string.IsNullOrEmpty(doc.
Summary
))
67
sb.AppendLine(CultureInfo.InvariantCulture, $"> {doc.
Summary
}");
Aspire.Cli.Tests (4)
Mcp\TestDocsIndexService.cs (4)
57
var content = $"# {doc.Title}\n\n{doc.
Summary
}\n\nThis is test content for the document.";
62
Summary = doc.
Summary
,
77
(d.
Summary
?.Contains(query, StringComparison.OrdinalIgnoreCase) ?? false))
79
.Select(d => new DocsSearchResult { Slug = d.Slug, Title = d.Title, Summary = d.
Summary
, Score = 1.0f })