7 writes to Slug
aspire (1)
Mcp\Docs\DocsIndexService.cs (1)
204
Slug
= d.Source.Slug,
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" },
5 references to Slug
aspire (2)
Commands\DocsListCommand.cs (1)
86
Markup.Escape(doc.
Slug
),
Mcp\Tools\ListDocsTool.cs (1)
64
sb.AppendLine(CultureInfo.InvariantCulture, $"**Slug:** `{doc.
Slug
}`");
Aspire.Cli.Tests (3)
Mcp\TestDocsIndexService.cs (3)
51
var doc = _documents.FirstOrDefault(d => d.
Slug
== slug);
60
Slug = doc.
Slug
,
79
.Select(d => new DocsSearchResult { Slug = d.
Slug
, Title = d.Title, Summary = d.Summary, Score = 1.0f })