7 writes to Slug
aspire (1)
Mcp\Docs\DocsIndexService.cs (1)
204Slug = d.Source.Slug,
Aspire.Cli.Tests (6)
Commands\DocsCommandTests.cs (3)
184new() { Title = "Redis Integration", Slug = "redis-integration", Summary = "Learn how to use Redis" }, 185new() { Title = "PostgreSQL Integration", Slug = "postgresql-integration", Summary = "Learn how to use PostgreSQL" }, 186new() { Title = "Getting Started", Slug = "getting-started", Summary = "Get started with Aspire" }
Mcp\TestDocsIndexService.cs (3)
15new DocsListItem { Slug = "getting-started", Title = "Getting Started", Summary = "Learn how to get started with Aspire" }, 16new DocsListItem { Slug = "fundamentals/app-host", Title = "App Host", Summary = "Learn about the Aspire app host" }, 17new 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)
86Markup.Escape(doc.Slug),
Mcp\Tools\ListDocsTool.cs (1)
64sb.AppendLine(CultureInfo.InvariantCulture, $"**Slug:** `{doc.Slug}`");
Aspire.Cli.Tests (3)
Mcp\TestDocsIndexService.cs (3)
51var doc = _documents.FirstOrDefault(d => d.Slug == slug); 60Slug = doc.Slug, 79.Select(d => new DocsSearchResult { Slug = d.Slug, Title = d.Title, Summary = d.Summary, Score = 1.0f })