1 write to _cacheDirectory
aspire (1)
Caching\AppHostInfoDiskCache.cs (1)
116_cacheDirectory = new DirectoryInfo(Path.Combine(executionContext.CacheDirectory.FullName, SubDirectoryName));
5 references to _cacheDirectory
aspire (5)
Caching\AppHostInfoDiskCache.cs (5)
139var path = Path.Combine(_cacheDirectory.FullName, $"{key}.json"); 193if (!_cacheDirectory.Exists) 195_cacheDirectory.Create(); 212var path = Path.Combine(_cacheDirectory.FullName, $"{key}.json"); 218tempPath = Path.Combine(_cacheDirectory.FullName, $"{Path.GetRandomFileName()}.tmp");