diff --git a/FileDbCache/UWP/FileDbCache.UWP.csproj b/FileDbCache/UWP/FileDbCache.UWP.csproj index 9983e4d1..4207dc4b 100644 --- a/FileDbCache/UWP/FileDbCache.UWP.csproj +++ b/FileDbCache/UWP/FileDbCache.UWP.csproj @@ -23,7 +23,7 @@ full false bin\Debug\ - DEBUG;WINDOWS_UWP + DEBUG;UWP prompt 4 @@ -32,7 +32,7 @@ none true bin\Release\ - WINDOWS_UWP + UWP prompt 4 @@ -43,7 +43,9 @@ FileDbCache.cs - + + FileDbCache.WinUI.cs + diff --git a/FileDbCache/UWP/Properties/AssemblyInfo.cs b/FileDbCache/UWP/Properties/AssemblyInfo.cs index debee44e..5e4538bd 100644 --- a/FileDbCache/UWP/Properties/AssemblyInfo.cs +++ b/FileDbCache/UWP/Properties/AssemblyInfo.cs @@ -7,8 +7,8 @@ using System.Runtime.InteropServices; [assembly: AssemblyCompany("Clemens Fischer")] [assembly: AssemblyCopyright("Copyright © 2021 Clemens Fischer")] [assembly: AssemblyTrademark("")] -[assembly: AssemblyVersion("6.1.0")] -[assembly: AssemblyFileVersion("6.1.0")] +[assembly: AssemblyVersion("7.0.0")] +[assembly: AssemblyFileVersion("7.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] diff --git a/FileDbCache/WPF/FileDbCache.WPF.csproj b/FileDbCache/WPF/FileDbCache.WPF.csproj index 4030f6f1..02174408 100644 --- a/FileDbCache/WPF/FileDbCache.WPF.csproj +++ b/FileDbCache/WPF/FileDbCache.WPF.csproj @@ -8,7 +8,7 @@ ..\..\MapControl.snk false XAML Map Control - 6.1.0 + 7.0.0 ObjectCache implementation based on EzTools FileDb Clemens Fischer Copyright © 2021 Clemens Fischer @@ -16,24 +16,12 @@ XAML.MapControl.FileDbCache - - none - false - - - - - full - true - DEBUG - - - + diff --git a/FileDbCache/UWP/FileDbCache.UWP.cs b/FileDbCache/WinUI/FileDbCache.WinUI.cs similarity index 100% rename from FileDbCache/UWP/FileDbCache.UWP.cs rename to FileDbCache/WinUI/FileDbCache.WinUI.cs diff --git a/FileDbCache/WinUI/FileDbCache.WinUI.csproj b/FileDbCache/WinUI/FileDbCache.WinUI.csproj index 287d0933..a60f231d 100644 --- a/FileDbCache/WinUI/FileDbCache.WinUI.csproj +++ b/FileDbCache/WinUI/FileDbCache.WinUI.csproj @@ -9,7 +9,7 @@ ..\..\MapControl.snk false XAML Map Control - 6.1.0 + 7.0.0 IImageCache implementation based on EzTools FileDb Clemens Fischer Copyright © 2021 Clemens Fischer @@ -17,11 +17,7 @@ XAML.MapControl.FileDbCache - - DEBUG;WINUI - - - + WINUI @@ -31,7 +27,6 @@ - diff --git a/MBTiles/Shared/MBTileLayer.cs b/MBTiles/Shared/MBTileLayer.cs index 19caffa0..e504f09d 100644 --- a/MBTiles/Shared/MBTileLayer.cs +++ b/MBTiles/Shared/MBTileLayer.cs @@ -5,7 +5,7 @@ using System.Threading.Tasks; #if WINUI using Microsoft.UI.Xaml; -#elif WINDOWS_UWP +#elif UWP using Windows.UI.Xaml; #else using System.Windows; diff --git a/MBTiles/Shared/MBTileSource.cs b/MBTiles/Shared/MBTileSource.cs index 40b56be2..fe053bdb 100644 --- a/MBTiles/Shared/MBTileSource.cs +++ b/MBTiles/Shared/MBTileSource.cs @@ -7,7 +7,7 @@ using System.Diagnostics; using System.Threading.Tasks; #if WINUI using Microsoft.UI.Xaml.Media; -#elif WINDOWS_UWP +#elif UWP using Windows.UI.Xaml.Media; #else using System.Windows.Media; diff --git a/MBTiles/UWP/MBTiles.UWP.csproj b/MBTiles/UWP/MBTiles.UWP.csproj index 42512e8b..a2561127 100644 --- a/MBTiles/UWP/MBTiles.UWP.csproj +++ b/MBTiles/UWP/MBTiles.UWP.csproj @@ -23,7 +23,7 @@ full false bin\Debug\ - DEBUG;WINDOWS_UWP + DEBUG;UWP prompt 4 @@ -32,7 +32,7 @@ none true bin\Release\ - WINDOWS_UWP + UWP prompt 4 diff --git a/MBTiles/UWP/Properties/AssemblyInfo.cs b/MBTiles/UWP/Properties/AssemblyInfo.cs index 9d9f4ab0..0b9bba5c 100644 --- a/MBTiles/UWP/Properties/AssemblyInfo.cs +++ b/MBTiles/UWP/Properties/AssemblyInfo.cs @@ -7,8 +7,8 @@ using System.Runtime.InteropServices; [assembly: AssemblyCompany("Clemens Fischer")] [assembly: AssemblyCopyright("Copyright © 2021 Clemens Fischer")] [assembly: AssemblyTrademark("")] -[assembly: AssemblyVersion("6.1.0")] -[assembly: AssemblyFileVersion("6.1.0")] +[assembly: AssemblyVersion("7.0.0")] +[assembly: AssemblyFileVersion("7.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] diff --git a/MBTiles/WPF/MBTiles.WPF.csproj b/MBTiles/WPF/MBTiles.WPF.csproj index 7f8dfc73..fcdc864c 100644 --- a/MBTiles/WPF/MBTiles.WPF.csproj +++ b/MBTiles/WPF/MBTiles.WPF.csproj @@ -8,7 +8,7 @@ ..\..\MapControl.snk false XAML Map Control - 6.1.0 + 7.0.0 MBTiles Support Library for XAML Map Control Clemens Fischer Copyright © 2021 Clemens Fischer @@ -16,24 +16,12 @@ XAML.MapControl.MBTiles - - none - false - - - - - full - true - DEBUG - - - + diff --git a/MBTiles/WinUI/MBTiles.WinUI.csproj b/MBTiles/WinUI/MBTiles.WinUI.csproj index b8314e1d..2e8e0d8a 100644 --- a/MBTiles/WinUI/MBTiles.WinUI.csproj +++ b/MBTiles/WinUI/MBTiles.WinUI.csproj @@ -9,7 +9,7 @@ ..\..\MapControl.snk false XAML Map Control - 6.1.0 + 7.0.0 MBTiles Support Library for XAML Map Control Clemens Fischer Copyright © 2021 Clemens Fischer @@ -17,11 +17,7 @@ XAML.MapControl.MBTiles - - DEBUG;WINUI - - - + WINUI @@ -31,7 +27,6 @@ - diff --git a/MapControl/WinUI/MapControl.WinUI.csproj b/MapControl/WinUI/MapControl.WinUI.csproj index f243f098..2b593549 100644 --- a/MapControl/WinUI/MapControl.WinUI.csproj +++ b/MapControl/WinUI/MapControl.WinUI.csproj @@ -17,11 +17,7 @@ XAML.MapControl - - WINUI - - - + WINUI diff --git a/MapImages/Shared/GroundOverlayPanel.cs b/MapImages/Shared/GroundOverlayPanel.cs index 6c1fb311..d884a58d 100644 --- a/MapImages/Shared/GroundOverlayPanel.cs +++ b/MapImages/Shared/GroundOverlayPanel.cs @@ -15,7 +15,7 @@ using System.Xml; using Microsoft.UI.Xaml; using Microsoft.UI.Xaml.Controls; using Microsoft.UI.Xaml.Media; -#elif WINDOWS_UWP +#elif UWP using Windows.UI.Xaml; using Windows.UI.Xaml.Controls; using Windows.UI.Xaml.Media; diff --git a/MapImages/Shared/WorldFileImage.cs b/MapImages/Shared/WorldFileImage.cs index 4b9ac229..aea7040a 100644 --- a/MapImages/Shared/WorldFileImage.cs +++ b/MapImages/Shared/WorldFileImage.cs @@ -14,7 +14,7 @@ using Microsoft.UI.Xaml; using Microsoft.UI.Xaml.Controls; using Microsoft.UI.Xaml.Media; using Microsoft.UI.Xaml.Media.Imaging; -#elif WINDOWS_UWP +#elif UWP using Windows.Foundation; using Windows.UI.Xaml; using Windows.UI.Xaml.Controls; diff --git a/MapImages/UWP/MapImages.UWP.csproj b/MapImages/UWP/MapImages.UWP.csproj index 55dc337c..38db8cd8 100644 --- a/MapImages/UWP/MapImages.UWP.csproj +++ b/MapImages/UWP/MapImages.UWP.csproj @@ -23,7 +23,7 @@ full false bin\Debug\ - DEBUG;WINDOWS_UWP + DEBUG;UWP prompt 4 @@ -32,7 +32,7 @@ pdbonly true bin\Release\ - WINDOWS_UWP + UWP prompt 4 diff --git a/MapImages/UWP/Properties/AssemblyInfo.cs b/MapImages/UWP/Properties/AssemblyInfo.cs index d8a2e212..f9bdc9da 100644 --- a/MapImages/UWP/Properties/AssemblyInfo.cs +++ b/MapImages/UWP/Properties/AssemblyInfo.cs @@ -7,8 +7,8 @@ using System.Runtime.InteropServices; [assembly: AssemblyCompany("Clemens Fischer")] [assembly: AssemblyCopyright("Copyright © 2021 Clemens Fischer")] [assembly: AssemblyTrademark("")] -[assembly: AssemblyVersion("6.1.0")] -[assembly: AssemblyFileVersion("6.1.0")] +[assembly: AssemblyVersion("7.0.0")] +[assembly: AssemblyFileVersion("7.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] diff --git a/MapImages/WPF/MapImages.WPF.csproj b/MapImages/WPF/MapImages.WPF.csproj index e79f0d62..d3061730 100644 --- a/MapImages/WPF/MapImages.WPF.csproj +++ b/MapImages/WPF/MapImages.WPF.csproj @@ -8,7 +8,7 @@ ..\..\MapControl.snk false XAML Map Control - 6.1.0 + 7.0.0 Image Support Library for XAML Map Control Clemens Fischer Copyright © 2021 Clemens Fischer @@ -16,24 +16,12 @@ XAML.MapControl.MapImages - - none - false - - - - - full - true - DEBUG - - - + diff --git a/MapImages/WinUI/MapImages.WinUI.csproj b/MapImages/WinUI/MapImages.WinUI.csproj index 0fab7363..87277dad 100644 --- a/MapImages/WinUI/MapImages.WinUI.csproj +++ b/MapImages/WinUI/MapImages.WinUI.csproj @@ -9,7 +9,7 @@ ..\..\MapControl.snk false XAML Map Control - 6.1.0 + 7.0.0 Image Support Library for XAML Map Control Clemens Fischer Copyright © 2021 Clemens Fischer @@ -17,11 +17,7 @@ XAML.MapControl.MapImages - - DEBUG;WINUI - - - + WINUI @@ -31,11 +27,6 @@ - - - - - diff --git a/MapProjections/Shared/GeoApiProjection.cs b/MapProjections/Shared/GeoApiProjection.cs index 529fa999..66d5f5ac 100644 --- a/MapProjections/Shared/GeoApiProjection.cs +++ b/MapProjections/Shared/GeoApiProjection.cs @@ -11,7 +11,7 @@ using System; using System.Globalization; #if WINUI using Windows.Foundation; -#elif WINDOWS_UWP +#elif UWP using Windows.Foundation; #else using System.Windows; diff --git a/MapProjections/Shared/PolarStereographicProjection.cs b/MapProjections/Shared/PolarStereographicProjection.cs index 85b82cbd..4808b234 100644 --- a/MapProjections/Shared/PolarStereographicProjection.cs +++ b/MapProjections/Shared/PolarStereographicProjection.cs @@ -3,7 +3,7 @@ // Licensed under the Microsoft Public License (Ms-PL) using System; -#if !WINDOWS_UWP +#if !UWP using System.Windows; #endif diff --git a/MapProjections/Shared/WebMercatorProjection.cs b/MapProjections/Shared/WebMercatorProjection.cs index 3ee21d06..f73deafc 100644 --- a/MapProjections/Shared/WebMercatorProjection.cs +++ b/MapProjections/Shared/WebMercatorProjection.cs @@ -4,7 +4,7 @@ using ProjNet.CoordinateSystems; using System; -#if !WINDOWS_UWP +#if !UWP using System.Windows; #endif diff --git a/MapProjections/Shared/WorldMercatorProjection.cs b/MapProjections/Shared/WorldMercatorProjection.cs index c278742b..42153f64 100644 --- a/MapProjections/Shared/WorldMercatorProjection.cs +++ b/MapProjections/Shared/WorldMercatorProjection.cs @@ -3,7 +3,7 @@ // Licensed under the Microsoft Public License (Ms-PL) using System; -#if !WINDOWS_UWP +#if !UWP using System.Windows; #endif diff --git a/MapProjections/UWP/MapProjections.UWP.csproj b/MapProjections/UWP/MapProjections.UWP.csproj index 0d322de0..274ca59b 100644 --- a/MapProjections/UWP/MapProjections.UWP.csproj +++ b/MapProjections/UWP/MapProjections.UWP.csproj @@ -23,7 +23,7 @@ full false bin\Debug\ - DEBUG;WINDOWS_UWP + DEBUG;UWP prompt 4 @@ -32,7 +32,7 @@ none true bin\Release\ - WINDOWS_UWP + UWP prompt 4 diff --git a/MapProjections/UWP/Properties/AssemblyInfo.cs b/MapProjections/UWP/Properties/AssemblyInfo.cs index ba1c7924..fdeae199 100644 --- a/MapProjections/UWP/Properties/AssemblyInfo.cs +++ b/MapProjections/UWP/Properties/AssemblyInfo.cs @@ -7,8 +7,8 @@ using System.Runtime.InteropServices; [assembly: AssemblyCompany("Clemens Fischer")] [assembly: AssemblyCopyright("Copyright © 2021 Clemens Fischer")] [assembly: AssemblyTrademark("")] -[assembly: AssemblyVersion("6.1.0")] -[assembly: AssemblyFileVersion("6.1.0")] +[assembly: AssemblyVersion("7.0.0")] +[assembly: AssemblyFileVersion("7.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] diff --git a/MapProjections/WPF/MapProjections.WPF.csproj b/MapProjections/WPF/MapProjections.WPF.csproj index 502c87fe..db82de22 100644 --- a/MapProjections/WPF/MapProjections.WPF.csproj +++ b/MapProjections/WPF/MapProjections.WPF.csproj @@ -8,7 +8,7 @@ ..\..\MapControl.snk false XAML Map Control - 6.1.0 + 7.0.0 Map Projections Library for XAML Map Control Clemens Fischer Copyright © 2021 Clemens Fischer @@ -16,24 +16,12 @@ XAML.MapControl.MapProjections - - none - false - - - - - full - true - DEBUG - - - + diff --git a/MapProjections/WinUI/MapProjections.WinUI.csproj b/MapProjections/WinUI/MapProjections.WinUI.csproj index 6e712a91..86e47e14 100644 --- a/MapProjections/WinUI/MapProjections.WinUI.csproj +++ b/MapProjections/WinUI/MapProjections.WinUI.csproj @@ -9,7 +9,7 @@ ..\..\MapControl.snk false XAML Map Control - 6.1.0 + 7.0.0 Map Projections Library for XAML Map Control Clemens Fischer Copyright © 2021 Clemens Fischer @@ -17,11 +17,7 @@ XAML.MapControl.MapProjections - - DEBUG;WINUI - - - + WINUI @@ -30,7 +26,7 @@ - + diff --git a/SQLiteCache/UWP/Properties/AssemblyInfo.cs b/SQLiteCache/UWP/Properties/AssemblyInfo.cs index a651a4a5..bc382b3f 100644 --- a/SQLiteCache/UWP/Properties/AssemblyInfo.cs +++ b/SQLiteCache/UWP/Properties/AssemblyInfo.cs @@ -7,8 +7,8 @@ using System.Runtime.InteropServices; [assembly: AssemblyCompany("Clemens Fischer")] [assembly: AssemblyCopyright("Copyright © 2021 Clemens Fischer")] [assembly: AssemblyTrademark("")] -[assembly: AssemblyVersion("6.1.0")] -[assembly: AssemblyFileVersion("6.1.0")] +[assembly: AssemblyVersion("7.0.0")] +[assembly: AssemblyFileVersion("7.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] diff --git a/SQLiteCache/UWP/SQLiteCache.UWP.csproj b/SQLiteCache/UWP/SQLiteCache.UWP.csproj index 3070ea80..60a17ede 100644 --- a/SQLiteCache/UWP/SQLiteCache.UWP.csproj +++ b/SQLiteCache/UWP/SQLiteCache.UWP.csproj @@ -23,7 +23,7 @@ full false bin\Debug\ - DEBUG;WINDOWS_UWP + DEBUG;UWP prompt 4 @@ -32,7 +32,7 @@ none true bin\Release\ - WINDOWS_UWP + UWP prompt 4 @@ -43,8 +43,10 @@ SQLiteCache.cs + + SQLiteCache.WinUI.cs + - diff --git a/SQLiteCache/WPF/SQLiteCache.WPF.csproj b/SQLiteCache/WPF/SQLiteCache.WPF.csproj index 7b066f9c..b4bd61f0 100644 --- a/SQLiteCache/WPF/SQLiteCache.WPF.csproj +++ b/SQLiteCache/WPF/SQLiteCache.WPF.csproj @@ -8,7 +8,7 @@ ..\..\MapControl.snk false XAML Map Control - 6.1.0 + 7.0.0 ObjectCache implementation based on SQLite Clemens Fischer Copyright © 2021 Clemens Fischer @@ -16,24 +16,12 @@ XAML.MapControl.SQLiteCache - - none - false - - - - - full - true - DEBUG - - - + diff --git a/SQLiteCache/UWP/SQLiteCache.UWP.cs b/SQLiteCache/WinUI/SQLiteCache.WinUI.cs similarity index 100% rename from SQLiteCache/UWP/SQLiteCache.UWP.cs rename to SQLiteCache/WinUI/SQLiteCache.WinUI.cs diff --git a/SQLiteCache/WinUI/SQLiteCache.WinUI.csproj b/SQLiteCache/WinUI/SQLiteCache.WinUI.csproj index fcd71982..1a0711c1 100644 --- a/SQLiteCache/WinUI/SQLiteCache.WinUI.csproj +++ b/SQLiteCache/WinUI/SQLiteCache.WinUI.csproj @@ -9,7 +9,7 @@ ..\..\MapControl.snk false XAML Map Control - 6.1.0 + 7.0.0 IImageCache implementation based on SQLite Clemens Fischer Copyright © 2021 Clemens Fischer @@ -17,11 +17,7 @@ XAML.MapControl.SQLiteCache - - DEBUG;WINUI - - - + WINUI @@ -31,7 +27,6 @@ - diff --git a/SampleApps/WinUiApp/WinUiApp.csproj b/SampleApps/WinUiApp/WinUiApp.csproj index b0cfbf83..85c2fa2e 100644 --- a/SampleApps/WinUiApp/WinUiApp.csproj +++ b/SampleApps/WinUiApp/WinUiApp.csproj @@ -18,11 +18,7 @@ true - - DEBUG;WINUI - - - + WINUI