Removed EnableMsixTooling

This commit is contained in:
ClemensFischer 2025-03-09 21:40:37 +01:00
parent 37dac5611d
commit d4f39c5cd9
4 changed files with 15 additions and 19 deletions

View file

@ -27,12 +27,7 @@ namespace MapControl.Caching
public ImageFileCache(string path, TimeSpan expirationScanFrequency)
{
if (string.IsNullOrEmpty(path))
{
path = "TileCache";
}
rootDirectory = new DirectoryInfo(path);
rootDirectory = new DirectoryInfo(!string.IsNullOrEmpty(path) ? path : "TileCache");
rootDirectory.Create();
Debug.WriteLine($"{nameof(ImageFileCache)}: {rootDirectory.FullName}");