mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2026-04-08 16:05:50 +00:00
Removed EnableMsixTooling
This commit is contained in:
parent
37dac5611d
commit
d4f39c5cd9
4 changed files with 15 additions and 19 deletions
|
|
@ -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}");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue