3 instantiations of FileBackedDocumentContentCache
aspire (2)
Documentation\ApiDocs\ApiDocsCache.cs (1)
28
private 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)
28
private readonly
FileBackedDocumentContentCache
_contentCache = new(memoryCache, executionContext, ApiDocsCacheSubdirectory, logger);
Documentation\Docs\DocsCache.cs (1)
18
private readonly
FileBackedDocumentContentCache
_contentCache;
Aspire.Cli.Tests (2)
Mcp\Docs\DocsCacheTests.cs (2)
52
var
contentCache = CreateContentCache(workspace, memoryCache);
119
private static Aspire.Cli.Documentation.
FileBackedDocumentContentCache
CreateContentCache(TemporaryWorkspace workspace, IMemoryCache memoryCache)