diff --git a/FileDbCache/UWP/Properties/AssemblyInfo.cs b/FileDbCache/UWP/Properties/AssemblyInfo.cs
index 50ff29ca..37600267 100644
--- a/FileDbCache/UWP/Properties/AssemblyInfo.cs
+++ b/FileDbCache/UWP/Properties/AssemblyInfo.cs
@@ -6,8 +6,8 @@ using System.Runtime.InteropServices;
[assembly: AssemblyCompany("Clemens Fischer")]
[assembly: AssemblyCopyright("Copyright © 2023 Clemens Fischer")]
[assembly: AssemblyTrademark("")]
-[assembly: AssemblyVersion("8.1.0")]
-[assembly: AssemblyFileVersion("8.1.0")]
+[assembly: AssemblyVersion("8.2.0")]
+[assembly: AssemblyFileVersion("8.2.0")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCulture("")]
[assembly: ComVisible(false)]
diff --git a/FileDbCache/WPF/FileDbCache.WPF.csproj b/FileDbCache/WPF/FileDbCache.WPF.csproj
index 5bf62054..991508c5 100644
--- a/FileDbCache/WPF/FileDbCache.WPF.csproj
+++ b/FileDbCache/WPF/FileDbCache.WPF.csproj
@@ -5,7 +5,7 @@
MapControl.Caching
XAML Map Control FileDbCache Library for WPF
XAML Map Control
- 8.1.0
+ 8.2.0
Clemens Fischer
Copyright © 2023 Clemens Fischer
true
diff --git a/FileDbCache/WinUI/FileDbCache.WinUI.csproj b/FileDbCache/WinUI/FileDbCache.WinUI.csproj
index 26334419..783f3eee 100644
--- a/FileDbCache/WinUI/FileDbCache.WinUI.csproj
+++ b/FileDbCache/WinUI/FileDbCache.WinUI.csproj
@@ -6,7 +6,7 @@
MapControl.Caching
XAML Map Control FileDbCache Library for WinUI
XAML Map Control
- 8.1.0
+ 8.2.0
Clemens Fischer
Copyright © 2023 Clemens Fischer
true
diff --git a/MBTiles/UWP/Properties/AssemblyInfo.cs b/MBTiles/UWP/Properties/AssemblyInfo.cs
index 41b3c3c4..6e81ca38 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 © 2023 Clemens Fischer")]
[assembly: AssemblyTrademark("")]
-[assembly: AssemblyVersion("8.1.0")]
-[assembly: AssemblyFileVersion("8.1.0")]
+[assembly: AssemblyVersion("8.2.0")]
+[assembly: AssemblyFileVersion("8.2.0")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCulture("")]
[assembly: ComVisible(false)]
diff --git a/MBTiles/WPF/MBTiles.WPF.csproj b/MBTiles/WPF/MBTiles.WPF.csproj
index 6371e3b3..8518201e 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
- 8.1.0
+ 8.2.0
Clemens Fischer
Copyright © 2023 Clemens Fischer
true
diff --git a/MBTiles/WinUI/MBTiles.WinUI.csproj b/MBTiles/WinUI/MBTiles.WinUI.csproj
index 297c192a..1e1d1c15 100644
--- a/MBTiles/WinUI/MBTiles.WinUI.csproj
+++ b/MBTiles/WinUI/MBTiles.WinUI.csproj
@@ -6,7 +6,7 @@
MapControl.MBTiles
XAML Map Control MBTiles Library for WinUI
XAML Map Control
- 8.1.0
+ 8.2.0
Clemens Fischer
Copyright © 2023 Clemens Fischer
true
diff --git a/MapControl/UWP/Properties/AssemblyInfo.cs b/MapControl/UWP/Properties/AssemblyInfo.cs
index 8905ab98..1f2c9ec2 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 © 2023 Clemens Fischer")]
[assembly: AssemblyTrademark("")]
-[assembly: AssemblyVersion("8.1.0")]
-[assembly: AssemblyFileVersion("8.1.0")]
+[assembly: AssemblyVersion("8.2.0")]
+[assembly: AssemblyFileVersion("8.2.0")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCulture("")]
[assembly: ComVisible(false)]
diff --git a/MapControl/WPF/MapControl.WPF.csproj b/MapControl/WPF/MapControl.WPF.csproj
index b7224503..787ef7bf 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
- 8.1.0
+ 8.2.0
Clemens Fischer
Copyright © 2023 Clemens Fischer
true
diff --git a/MapControl/WPF/MapPath.WPF.cs b/MapControl/WPF/MapPath.WPF.cs
index d748431c..0d6019f9 100644
--- a/MapControl/WPF/MapPath.WPF.cs
+++ b/MapControl/WPF/MapPath.WPF.cs
@@ -32,12 +32,13 @@ namespace MapControl
private static void DataPropertyChanged(DependencyObject obj, DependencyPropertyChangedEventArgs e)
{
- // Check if Data is actually a new Geometry.
+ var data = (Geometry)e.NewValue;
+
+ // Check if data is actually a new Geometry.
//
- if (e.NewValue != null && !ReferenceEquals(e.NewValue, e.OldValue))
+ if (data != null && !ReferenceEquals(data, e.OldValue))
{
var path = (MapPath)obj;
- var data = (Geometry)e.NewValue;
if (data.IsFrozen)
{
diff --git a/MapControl/WinUI/MapControl.WinUI.csproj b/MapControl/WinUI/MapControl.WinUI.csproj
index ac8ebd4c..7e94ab55 100644
--- a/MapControl/WinUI/MapControl.WinUI.csproj
+++ b/MapControl/WinUI/MapControl.WinUI.csproj
@@ -6,7 +6,7 @@
MapControl
XAML Map Control Library for WinUI
XAML Map Control
- 8.1.0
+ 8.2.0
Clemens Fischer
Copyright © 2023 Clemens Fischer
true
diff --git a/MapProjections/UWP/Properties/AssemblyInfo.cs b/MapProjections/UWP/Properties/AssemblyInfo.cs
index a21d5df5..0539960c 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 © 2023 Clemens Fischer")]
[assembly: AssemblyTrademark("")]
-[assembly: AssemblyVersion("8.1.0")]
-[assembly: AssemblyFileVersion("8.1.0")]
+[assembly: AssemblyVersion("8.2.0")]
+[assembly: AssemblyFileVersion("8.2.0")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCulture("")]
[assembly: ComVisible(false)]
diff --git a/MapProjections/WPF/MapProjections.WPF.csproj b/MapProjections/WPF/MapProjections.WPF.csproj
index d955c118..1e29e299 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
- 8.1.0
+ 8.2.0
Clemens Fischer
Copyright © 2023 Clemens Fischer
true
diff --git a/MapProjections/WinUI/MapProjections.WinUI.csproj b/MapProjections/WinUI/MapProjections.WinUI.csproj
index ed1e72cd..19731d2e 100644
--- a/MapProjections/WinUI/MapProjections.WinUI.csproj
+++ b/MapProjections/WinUI/MapProjections.WinUI.csproj
@@ -6,7 +6,7 @@
MapControl.Projections
XAML Map Control Projections Library for WinUI
XAML Map Control
- 8.1.0
+ 8.2.0
Clemens Fischer
Copyright © 2023 Clemens Fischer
true
diff --git a/MapUiTools/UWP/Properties/AssemblyInfo.cs b/MapUiTools/UWP/Properties/AssemblyInfo.cs
index 9af2f3e4..397cb682 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 © 2023 Clemens Fischer")]
[assembly: AssemblyTrademark("")]
-[assembly: AssemblyVersion("8.1.0")]
-[assembly: AssemblyFileVersion("8.1.0")]
+[assembly: AssemblyVersion("8.2.0")]
+[assembly: AssemblyFileVersion("8.2.0")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCulture("")]
[assembly: ComVisible(false)]
diff --git a/MapUiTools/WPF/MapUiTools.WPF.csproj b/MapUiTools/WPF/MapUiTools.WPF.csproj
index 1e02bdb5..56d4a46a 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
- 8.1.0
+ 8.2.0
Clemens Fischer
Copyright © 2023 Clemens Fischer
true
diff --git a/MapUiTools/WinUI/MapUiTools.WinUI.csproj b/MapUiTools/WinUI/MapUiTools.WinUI.csproj
index b9378ab0..90435758 100644
--- a/MapUiTools/WinUI/MapUiTools.WinUI.csproj
+++ b/MapUiTools/WinUI/MapUiTools.WinUI.csproj
@@ -6,7 +6,7 @@
MapControl.UiTools
XAML Map Control UI Tools Library for WinUI
XAML Map Control
- 8.1.0
+ 8.2.0
Clemens Fischer
Copyright © 2023 Clemens Fischer
true
diff --git a/SQLiteCache/UWP/Properties/AssemblyInfo.cs b/SQLiteCache/UWP/Properties/AssemblyInfo.cs
index a8dc55ef..b7928e97 100644
--- a/SQLiteCache/UWP/Properties/AssemblyInfo.cs
+++ b/SQLiteCache/UWP/Properties/AssemblyInfo.cs
@@ -6,8 +6,8 @@ using System.Runtime.InteropServices;
[assembly: AssemblyCompany("Clemens Fischer")]
[assembly: AssemblyCopyright("Copyright © 2023 Clemens Fischer")]
[assembly: AssemblyTrademark("")]
-[assembly: AssemblyVersion("8.1.0")]
-[assembly: AssemblyFileVersion("8.1.0")]
+[assembly: AssemblyVersion("8.2.0")]
+[assembly: AssemblyFileVersion("8.2.0")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCulture("")]
[assembly: ComVisible(false)]
diff --git a/SQLiteCache/WPF/SQLiteCache.WPF.csproj b/SQLiteCache/WPF/SQLiteCache.WPF.csproj
index cae54a2a..dba59621 100644
--- a/SQLiteCache/WPF/SQLiteCache.WPF.csproj
+++ b/SQLiteCache/WPF/SQLiteCache.WPF.csproj
@@ -5,7 +5,7 @@
MapControl.Caching
XAML Map Control SQLiteCache Library for WPF
XAML Map Control
- 8.1.0
+ 8.2.0
Clemens Fischer
Copyright © 2023 Clemens Fischer
true
diff --git a/SQLiteCache/WinUI/SQLiteCache.WinUI.csproj b/SQLiteCache/WinUI/SQLiteCache.WinUI.csproj
index 5a21e165..1639fbdd 100644
--- a/SQLiteCache/WinUI/SQLiteCache.WinUI.csproj
+++ b/SQLiteCache/WinUI/SQLiteCache.WinUI.csproj
@@ -6,7 +6,7 @@
MapControl.Caching
XAML Map Control SQLiteCache Library for WinUI
XAML Map Control
- 8.1.0
+ 8.2.0
Clemens Fischer
Copyright © 2023 Clemens Fischer
true
diff --git a/SampleApps/ProjectionDemo/ProjectionDemo.csproj b/SampleApps/ProjectionDemo/ProjectionDemo.csproj
index 9d517d68..96b2a86e 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
- 8.1.0
+ 8.2.0
Clemens Fischer
Copyright © 2023 Clemens Fischer
diff --git a/SampleApps/UniversalApp/Properties/AssemblyInfo.cs b/SampleApps/UniversalApp/Properties/AssemblyInfo.cs
index b45a1e26..f6ecf584 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 © 2023 Clemens Fischer")]
[assembly: AssemblyTrademark("")]
-[assembly: AssemblyVersion("8.1.0")]
-[assembly: AssemblyFileVersion("8.1.0")]
+[assembly: AssemblyVersion("8.2.0")]
+[assembly: AssemblyFileVersion("8.2.0")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCulture("")]
[assembly: ComVisible(false)]
diff --git a/SampleApps/WinUiApp/WinUiApp.csproj b/SampleApps/WinUiApp/WinUiApp.csproj
index 4ec7fbe0..1b4a96f1 100644
--- a/SampleApps/WinUiApp/WinUiApp.csproj
+++ b/SampleApps/WinUiApp/WinUiApp.csproj
@@ -10,7 +10,7 @@
SampleApplication
XAML Map Control WinUI Sample Application
XAML Map Control
- 8.1.0
+ 8.2.0
Clemens Fischer
Copyright © 2023 Clemens Fischer
none
diff --git a/SampleApps/WpfApplication/WpfApplication.csproj b/SampleApps/WpfApplication/WpfApplication.csproj
index f68bcc89..67f2d8f0 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
- 8.1.0
+ 8.2.0
Clemens Fischer
Copyright © 2023 Clemens Fischer