3 instantiations of FileBackedDocumentContentCache
aspire (2)
Documentation\ApiDocs\ApiDocsCache.cs (1)
28private readonly FileBackedDocumentContentCache _contentCache = new(memoryCache, executionContext, ApiDocsCacheSubdirectory, logger);
Documentation\Docs\DocsCache.cs (1)
38_contentCache = new FileBackedDocumentContentCache(memoryCache, executionContext, DocsCacheSubdirectory, logger);
Aspire.Cli.Tests (1)
Mcp\Docs\DocsCacheTests.cs (1)
120=> new(memoryCache, CreateExecutionContext(workspace), "docs", NullLogger<DocsCache>.Instance);
4 references to FileBackedDocumentContentCache
aspire (2)
Documentation\ApiDocs\ApiDocsCache.cs (1)
28private readonly FileBackedDocumentContentCache _contentCache = new(memoryCache, executionContext, ApiDocsCacheSubdirectory, logger);
Documentation\Docs\DocsCache.cs (1)
18private readonly FileBackedDocumentContentCache _contentCache;
Aspire.Cli.Tests (2)
Mcp\Docs\DocsCacheTests.cs (2)
52var contentCache = CreateContentCache(workspace, memoryCache); 119private static Aspire.Cli.Documentation.FileBackedDocumentContentCache CreateContentCache(TemporaryWorkspace workspace, IMemoryCache memoryCache)