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)
139
var path = Path.Combine(
_cacheDirectory
.FullName, $"{key}.json");
193
if (!
_cacheDirectory
.Exists)
195
_cacheDirectory
.Create();
212
var path = Path.Combine(
_cacheDirectory
.FullName, $"{key}.json");
218
tempPath = Path.Combine(
_cacheDirectory
.FullName, $"{Path.GetRandomFileName()}.tmp");