diff --git a/Caches/FileDbCache/FileDbCache.csproj b/Caches/FileDbCache/FileDbCache.csproj index 4fe9d3e2..8b51bbdf 100644 --- a/Caches/FileDbCache/FileDbCache.csproj +++ b/Caches/FileDbCache/FileDbCache.csproj @@ -4,7 +4,7 @@ MapControl.Caching XAML Map Control FileDbCache Library XAML Map Control - 9.0.0 + 9.0.1 Clemens Fischer Copyright © 2024 Clemens Fischer true diff --git a/Caches/SQLiteCache/SQLiteCache.csproj b/Caches/SQLiteCache/SQLiteCache.csproj index 0fc6d269..dfb2c0d5 100644 --- a/Caches/SQLiteCache/SQLiteCache.csproj +++ b/Caches/SQLiteCache/SQLiteCache.csproj @@ -4,7 +4,7 @@ MapControl.Caching XAML Map Control SQLiteCache Library XAML Map Control - 9.0.0 + 9.0.1 Clemens Fischer Copyright © 2024 Clemens Fischer true diff --git a/MBTiles/UWP/Properties/AssemblyInfo.cs b/MBTiles/UWP/Properties/AssemblyInfo.cs index 3fffbf4e..b57d4b45 100644 --- a/MBTiles/UWP/Properties/AssemblyInfo.cs +++ b/MBTiles/UWP/Properties/AssemblyInfo.cs @@ -6,8 +6,8 @@ using System.Runtime.InteropServices; [assembly: AssemblyCompany("Clemens Fischer")] [assembly: AssemblyCopyright("Copyright © 2024 Clemens Fischer")] [assembly: AssemblyTrademark("")] -[assembly: AssemblyVersion("9.0.0")] -[assembly: AssemblyFileVersion("9.0.0")] +[assembly: AssemblyVersion("9.0.1")] +[assembly: AssemblyFileVersion("9.0.1")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] diff --git a/MBTiles/WPF/MBTiles.WPF.csproj b/MBTiles/WPF/MBTiles.WPF.csproj index 9232a0e8..5d57b217 100644 --- a/MBTiles/WPF/MBTiles.WPF.csproj +++ b/MBTiles/WPF/MBTiles.WPF.csproj @@ -5,7 +5,7 @@ MapControl.MBTiles XAML Map Control MBTiles Library for WPF XAML Map Control - 9.0.0 + 9.0.1 Clemens Fischer Copyright © 2024 Clemens Fischer true diff --git a/MBTiles/WinUI/MBTiles.WinUI.csproj b/MBTiles/WinUI/MBTiles.WinUI.csproj index 01ee327d..ae6fab18 100644 --- a/MBTiles/WinUI/MBTiles.WinUI.csproj +++ b/MBTiles/WinUI/MBTiles.WinUI.csproj @@ -7,7 +7,7 @@ MapControl.MBTiles XAML Map Control MBTiles Library for WinUI XAML Map Control - 9.0.0 + 9.0.1 Clemens Fischer Copyright © 2024 Clemens Fischer true diff --git a/MapControl/Shared/TileImageLoader.cs b/MapControl/Shared/TileImageLoader.cs index 7ab118d8..3663ea02 100644 --- a/MapControl/Shared/TileImageLoader.cs +++ b/MapControl/Shared/TileImageLoader.cs @@ -3,6 +3,8 @@ // Licensed under the Microsoft Public License (Ms-PL) using Microsoft.Extensions.Caching.Distributed; +using Microsoft.Extensions.Caching.Memory; +using Microsoft.Extensions.Options; using System; using System.Collections.Concurrent; using System.Collections.Generic; @@ -41,8 +43,9 @@ namespace MapControl /// /// An IDistributedCache implementation used to cache tile images. + /// The default value is a MemoryDistributedCache instance. /// - public static IDistributedCache Cache { get; set; } + public static IDistributedCache Cache { get; set; } = new MemoryDistributedCache(Options.Create(new MemoryDistributedCacheOptions())); /// /// Default expiration time for cached tile images. Used when no expiration time diff --git a/MapControl/UWP/MapControl.UWP.csproj b/MapControl/UWP/MapControl.UWP.csproj index 0a9ce60c..1b33b130 100644 --- a/MapControl/UWP/MapControl.UWP.csproj +++ b/MapControl/UWP/MapControl.UWP.csproj @@ -286,6 +286,9 @@ 8.0.0 + + 8.0.0 + 6.2.14 diff --git a/MapControl/UWP/Properties/AssemblyInfo.cs b/MapControl/UWP/Properties/AssemblyInfo.cs index c80cffa7..39a35303 100644 --- a/MapControl/UWP/Properties/AssemblyInfo.cs +++ b/MapControl/UWP/Properties/AssemblyInfo.cs @@ -6,8 +6,8 @@ using System.Runtime.InteropServices; [assembly: AssemblyCompany("Clemens Fischer")] [assembly: AssemblyCopyright("Copyright © 2024 Clemens Fischer")] [assembly: AssemblyTrademark("")] -[assembly: AssemblyVersion("9.0.0")] -[assembly: AssemblyFileVersion("9.0.0")] +[assembly: AssemblyVersion("9.0.1")] +[assembly: AssemblyFileVersion("9.0.1")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] diff --git a/MapControl/WPF/MapControl.WPF.csproj b/MapControl/WPF/MapControl.WPF.csproj index 399f1981..e30e103a 100644 --- a/MapControl/WPF/MapControl.WPF.csproj +++ b/MapControl/WPF/MapControl.WPF.csproj @@ -5,7 +5,7 @@ MapControl XAML Map Control Library for WPF XAML Map Control - 9.0.0 + 9.0.1 Clemens Fischer Copyright © 2024 Clemens Fischer true @@ -31,5 +31,6 @@ + diff --git a/MapControl/WinUI/MapControl.WinUI.csproj b/MapControl/WinUI/MapControl.WinUI.csproj index 8319cd5b..053acb82 100644 --- a/MapControl/WinUI/MapControl.WinUI.csproj +++ b/MapControl/WinUI/MapControl.WinUI.csproj @@ -7,7 +7,7 @@ MapControl XAML Map Control Library for WinUI XAML Map Control - 9.0.0 + 9.0.1 Clemens Fischer Copyright © 2024 Clemens Fischer true @@ -30,5 +30,6 @@ + diff --git a/MapProjections/UWP/Properties/AssemblyInfo.cs b/MapProjections/UWP/Properties/AssemblyInfo.cs index 2839fb07..c3cef450 100644 --- a/MapProjections/UWP/Properties/AssemblyInfo.cs +++ b/MapProjections/UWP/Properties/AssemblyInfo.cs @@ -6,8 +6,8 @@ using System.Runtime.InteropServices; [assembly: AssemblyCompany("Clemens Fischer")] [assembly: AssemblyCopyright("Copyright © 2024 Clemens Fischer")] [assembly: AssemblyTrademark("")] -[assembly: AssemblyVersion("9.0.0")] -[assembly: AssemblyFileVersion("9.0.0")] +[assembly: AssemblyVersion("9.0.1")] +[assembly: AssemblyFileVersion("9.0.1")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] diff --git a/MapProjections/WPF/MapProjections.WPF.csproj b/MapProjections/WPF/MapProjections.WPF.csproj index e3811291..eceb680b 100644 --- a/MapProjections/WPF/MapProjections.WPF.csproj +++ b/MapProjections/WPF/MapProjections.WPF.csproj @@ -5,7 +5,7 @@ MapControl.Projections XAML Map Control Projections Library for WPF XAML Map Control - 9.0.0 + 9.0.1 Clemens Fischer Copyright © 2024 Clemens Fischer true diff --git a/MapProjections/WinUI/MapProjections.WinUI.csproj b/MapProjections/WinUI/MapProjections.WinUI.csproj index 462abc26..c1059a3b 100644 --- a/MapProjections/WinUI/MapProjections.WinUI.csproj +++ b/MapProjections/WinUI/MapProjections.WinUI.csproj @@ -7,7 +7,7 @@ MapControl.Projections XAML Map Control Projections Library for WinUI XAML Map Control - 9.0.0 + 9.0.1 Clemens Fischer Copyright © 2024 Clemens Fischer true diff --git a/MapUiTools/UWP/Properties/AssemblyInfo.cs b/MapUiTools/UWP/Properties/AssemblyInfo.cs index e516d930..238df73e 100644 --- a/MapUiTools/UWP/Properties/AssemblyInfo.cs +++ b/MapUiTools/UWP/Properties/AssemblyInfo.cs @@ -6,8 +6,8 @@ using System.Runtime.InteropServices; [assembly: AssemblyCompany("Clemens Fischer")] [assembly: AssemblyCopyright("Copyright © 2024 Clemens Fischer")] [assembly: AssemblyTrademark("")] -[assembly: AssemblyVersion("9.0.0")] -[assembly: AssemblyFileVersion("9.0.0")] +[assembly: AssemblyVersion("9.0.1")] +[assembly: AssemblyFileVersion("9.0.1")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] diff --git a/MapUiTools/WPF/MapUiTools.WPF.csproj b/MapUiTools/WPF/MapUiTools.WPF.csproj index 64265c47..1e5de51c 100644 --- a/MapUiTools/WPF/MapUiTools.WPF.csproj +++ b/MapUiTools/WPF/MapUiTools.WPF.csproj @@ -5,7 +5,7 @@ MapControl.UiTools XAML Map Control UI Tools Library for WPF XAML Map Control - 9.0.0 + 9.0.1 Clemens Fischer Copyright © 2024 Clemens Fischer true diff --git a/MapUiTools/WinUI/MapUiTools.WinUI.csproj b/MapUiTools/WinUI/MapUiTools.WinUI.csproj index cec19a51..4045b70a 100644 --- a/MapUiTools/WinUI/MapUiTools.WinUI.csproj +++ b/MapUiTools/WinUI/MapUiTools.WinUI.csproj @@ -7,7 +7,7 @@ MapControl.UiTools XAML Map Control UI Tools Library for WinUI XAML Map Control - 9.0.0 + 9.0.1 Clemens Fischer Copyright © 2024 Clemens Fischer true diff --git a/SampleApps/ProjectionDemo/ProjectionDemo.csproj b/SampleApps/ProjectionDemo/ProjectionDemo.csproj index 777c9453..14b47b31 100644 --- a/SampleApps/ProjectionDemo/ProjectionDemo.csproj +++ b/SampleApps/ProjectionDemo/ProjectionDemo.csproj @@ -6,7 +6,7 @@ ProjectionDemo XAML Map Control Projection Demo Application XAML Map Control - 9.0.0 + 9.0.1 Clemens Fischer Copyright © 2024 Clemens Fischer diff --git a/SampleApps/UniversalApp/Properties/AssemblyInfo.cs b/SampleApps/UniversalApp/Properties/AssemblyInfo.cs index 748ccc71..80b40d35 100644 --- a/SampleApps/UniversalApp/Properties/AssemblyInfo.cs +++ b/SampleApps/UniversalApp/Properties/AssemblyInfo.cs @@ -6,8 +6,8 @@ using System.Runtime.InteropServices; [assembly: AssemblyCompany("Clemens Fischer")] [assembly: AssemblyCopyright("Copyright © 2024 Clemens Fischer")] [assembly: AssemblyTrademark("")] -[assembly: AssemblyVersion("9.0.0")] -[assembly: AssemblyFileVersion("9.0.0")] +[assembly: AssemblyVersion("9.0.1")] +[assembly: AssemblyFileVersion("9.0.1")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] diff --git a/SampleApps/WinUiApp/WinUiApp.csproj b/SampleApps/WinUiApp/WinUiApp.csproj index 1fbcefdd..03da834f 100644 --- a/SampleApps/WinUiApp/WinUiApp.csproj +++ b/SampleApps/WinUiApp/WinUiApp.csproj @@ -11,7 +11,7 @@ SampleApplication XAML Map Control WinUI Sample Application XAML Map Control - 9.0.0 + 9.0.1 Clemens Fischer Copyright © 2024 Clemens Fischer none diff --git a/SampleApps/WpfApplication/WpfApplication.csproj b/SampleApps/WpfApplication/WpfApplication.csproj index c41df505..5e986927 100644 --- a/SampleApps/WpfApplication/WpfApplication.csproj +++ b/SampleApps/WpfApplication/WpfApplication.csproj @@ -6,7 +6,7 @@ SampleApplication XAML Map Control WPF Sample Application XAML Map Control - 9.0.0 + 9.0.1 Clemens Fischer Copyright © 2024 Clemens Fischer