diff --git a/FileDbCache/UWP/FileDbCache.UWP.csproj b/FileDbCache/UWP/FileDbCache.UWP.csproj index 08a8723e..9983e4d1 100644 --- a/FileDbCache/UWP/FileDbCache.UWP.csproj +++ b/FileDbCache/UWP/FileDbCache.UWP.csproj @@ -52,7 +52,7 @@ 7.4.4 - 6.2.12 + 6.2.13 diff --git a/FileDbCache/UWP/Properties/AssemblyInfo.cs b/FileDbCache/UWP/Properties/AssemblyInfo.cs index 987bcd65..debee44e 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.0.1")] -[assembly: AssemblyFileVersion("6.0.1")] +[assembly: AssemblyVersion("6.1.0")] +[assembly: AssemblyFileVersion("6.1.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] diff --git a/FileDbCache/WPF/FileDbCache.WPF.csproj b/FileDbCache/WPF/FileDbCache.WPF.csproj index b27548b6..10223b65 100644 --- a/FileDbCache/WPF/FileDbCache.WPF.csproj +++ b/FileDbCache/WPF/FileDbCache.WPF.csproj @@ -9,7 +9,7 @@ ..\..\MapControl.snk false XAML Map Control - 6.0.1 + 6.1.0 ObjectCache implementation based on EzTools FileDb Clemens Fischer Copyright © 2021 Clemens Fischer diff --git a/FileDbCache/WinUI/FileDbCache.WinUI.csproj b/FileDbCache/WinUI/FileDbCache.WinUI.csproj index 4392bf0e..d1b2e1ab 100644 --- a/FileDbCache/WinUI/FileDbCache.WinUI.csproj +++ b/FileDbCache/WinUI/FileDbCache.WinUI.csproj @@ -8,7 +8,7 @@ ..\..\MapControl.snk false XAML Map Control - 6.0.1 + 6.1.0 IImageCache implementation based on EzTools FileDb Clemens Fischer Copyright © 2021 Clemens Fischer @@ -17,6 +17,14 @@ true + + DEBUG;WINUI + + + + WINUI + + @@ -28,9 +36,9 @@ - - - + + + diff --git a/MBTiles/Shared/MBTileLayer.cs b/MBTiles/Shared/MBTileLayer.cs index 4927763c..8739f2ea 100644 --- a/MBTiles/Shared/MBTileLayer.cs +++ b/MBTiles/Shared/MBTileLayer.cs @@ -3,7 +3,9 @@ // Licensed under the Microsoft Public License (Ms-PL) using System.Threading.Tasks; -#if WINDOWS_UWP +#if WINUI +using Microsoft.UI.Xaml; +#elif WINDOWS_UWP using Windows.UI.Xaml; #else using System.Windows; diff --git a/MBTiles/Shared/MBTileSource.cs b/MBTiles/Shared/MBTileSource.cs index 798a60f1..0fb959f5 100644 --- a/MBTiles/Shared/MBTileSource.cs +++ b/MBTiles/Shared/MBTileSource.cs @@ -4,7 +4,9 @@ using System; using System.Threading.Tasks; -#if WINDOWS_UWP +#if WINUI +using Microsoft.UI.Xaml.Media; +#elif WINDOWS_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 f3727dc2..97aa9399 100644 --- a/MBTiles/UWP/MBTiles.UWP.csproj +++ b/MBTiles/UWP/MBTiles.UWP.csproj @@ -54,7 +54,7 @@ - 6.2.12 + 6.2.13 1.0.115 diff --git a/MBTiles/UWP/Properties/AssemblyInfo.cs b/MBTiles/UWP/Properties/AssemblyInfo.cs index bc778159..9d9f4ab0 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.0.1")] -[assembly: AssemblyFileVersion("6.0.1")] +[assembly: AssemblyVersion("6.1.0")] +[assembly: AssemblyFileVersion("6.1.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] diff --git a/MBTiles/WPF/MBTiles.WPF.csproj b/MBTiles/WPF/MBTiles.WPF.csproj index 3dd713fe..38d00949 100644 --- a/MBTiles/WPF/MBTiles.WPF.csproj +++ b/MBTiles/WPF/MBTiles.WPF.csproj @@ -9,7 +9,7 @@ ..\..\MapControl.snk false XAML Map Control - 6.0.1 + 6.1.0 MBTiles Support Library for XAML Map Control Clemens Fischer Copyright © 2021 Clemens Fischer diff --git a/MBTiles/WinUI/MBTiles.WinUI.csproj b/MBTiles/WinUI/MBTiles.WinUI.csproj new file mode 100644 index 00000000..2cca1963 --- /dev/null +++ b/MBTiles/WinUI/MBTiles.WinUI.csproj @@ -0,0 +1,47 @@ + + + net5.0-windows10.0.19041 + 10.0.17763.0 + MapControl.MBTiles + win10-x86;win10-x64;win10-arm64 + true + ..\..\MapControl.snk + false + XAML Map Control + 6.1.0 + MBTiles Support Library for XAML Map Control + Clemens Fischer + Copyright © 2021 Clemens Fischer + false + XAML.MapControl.MBTiles + true + + + + DEBUG;WINUI + + + + WINUI + + + + + + + + + + + + + + + + + + + + + + diff --git a/MapControl/UWP/MapControl.UWP.csproj b/MapControl/UWP/MapControl.UWP.csproj index 0b4bb1f7..34b5d3e5 100644 --- a/MapControl/UWP/MapControl.UWP.csproj +++ b/MapControl/UWP/MapControl.UWP.csproj @@ -206,7 +206,7 @@ - 6.2.12 + 6.2.13 diff --git a/MapControl/UWP/Properties/AssemblyInfo.cs b/MapControl/UWP/Properties/AssemblyInfo.cs index 4c983cd2..96c4084f 100644 --- a/MapControl/UWP/Properties/AssemblyInfo.cs +++ b/MapControl/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.0.1")] -[assembly: AssemblyFileVersion("6.0.1")] +[assembly: AssemblyVersion("6.1.0")] +[assembly: AssemblyFileVersion("6.1.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] diff --git a/MapControl/WPF/MapControl.WPF.csproj b/MapControl/WPF/MapControl.WPF.csproj index 5cb8b02e..4b99dbde 100644 --- a/MapControl/WPF/MapControl.WPF.csproj +++ b/MapControl/WPF/MapControl.WPF.csproj @@ -7,7 +7,7 @@ ..\..\MapControl.snk false XAML Map Control - 6.0.1 + 6.1.0 XAML Map Control Library Clemens Fischer Copyright © 2021 Clemens Fischer diff --git a/MapControl/WinUI/MapControl.WinUI.csproj b/MapControl/WinUI/MapControl.WinUI.csproj index 092befc0..ef99ca42 100644 --- a/MapControl/WinUI/MapControl.WinUI.csproj +++ b/MapControl/WinUI/MapControl.WinUI.csproj @@ -8,7 +8,7 @@ ..\..\MapControl.snk false XAML Map Control - 6.0.1 + 6.1.0 XAML Map Control Library Clemens Fischer Copyright © 2021 Clemens Fischer @@ -17,7 +17,7 @@ - WINUI + DEBUG;WINUI @@ -38,8 +38,8 @@ - - - + + + diff --git a/MapControlExtended.sln b/MapControlExtended.sln index 5a678c02..488872e4 100644 --- a/MapControlExtended.sln +++ b/MapControlExtended.sln @@ -57,6 +57,15 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SQLiteCache.WinUI", "SQLite EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MapProjections.WinUI", "MapProjections\WinUI\MapProjections.WinUI.csproj", "{3572F71A-83FE-459D-8370-002CA28827FE}" EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{60A0BD05-219C-4A4F-9539-520D4A6D0161}" + ProjectSection(SolutionItems) = preProject + .editorconfig = .editorconfig + EndProjectSection +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MapImages.WinUI", "MapImages\WinUI\MapImages.WinUI.csproj", "{1F9FBADF-65C0-453D-9B45-7A88044F807F}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MBTiles.WinUI", "MBTiles\WinUI\MBTiles.WinUI.csproj", "{817D606F-A22D-485C-89CF-86062C8E97EF}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -227,6 +236,22 @@ Global {3572F71A-83FE-459D-8370-002CA28827FE}.Release|Any CPU.Build.0 = Release|Any CPU {3572F71A-83FE-459D-8370-002CA28827FE}.Release|x64.ActiveCfg = Release|Any CPU {3572F71A-83FE-459D-8370-002CA28827FE}.Release|x64.Build.0 = Release|Any CPU + {1F9FBADF-65C0-453D-9B45-7A88044F807F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {1F9FBADF-65C0-453D-9B45-7A88044F807F}.Debug|Any CPU.Build.0 = Debug|Any CPU + {1F9FBADF-65C0-453D-9B45-7A88044F807F}.Debug|x64.ActiveCfg = Debug|Any CPU + {1F9FBADF-65C0-453D-9B45-7A88044F807F}.Debug|x64.Build.0 = Debug|Any CPU + {1F9FBADF-65C0-453D-9B45-7A88044F807F}.Release|Any CPU.ActiveCfg = Release|Any CPU + {1F9FBADF-65C0-453D-9B45-7A88044F807F}.Release|Any CPU.Build.0 = Release|Any CPU + {1F9FBADF-65C0-453D-9B45-7A88044F807F}.Release|x64.ActiveCfg = Release|Any CPU + {1F9FBADF-65C0-453D-9B45-7A88044F807F}.Release|x64.Build.0 = Release|Any CPU + {817D606F-A22D-485C-89CF-86062C8E97EF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {817D606F-A22D-485C-89CF-86062C8E97EF}.Debug|Any CPU.Build.0 = Debug|Any CPU + {817D606F-A22D-485C-89CF-86062C8E97EF}.Debug|x64.ActiveCfg = Debug|Any CPU + {817D606F-A22D-485C-89CF-86062C8E97EF}.Debug|x64.Build.0 = Debug|Any CPU + {817D606F-A22D-485C-89CF-86062C8E97EF}.Release|Any CPU.ActiveCfg = Release|Any CPU + {817D606F-A22D-485C-89CF-86062C8E97EF}.Release|Any CPU.Build.0 = Release|Any CPU + {817D606F-A22D-485C-89CF-86062C8E97EF}.Release|x64.ActiveCfg = Release|Any CPU + {817D606F-A22D-485C-89CF-86062C8E97EF}.Release|x64.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -252,6 +277,8 @@ Global {DFE09FD5-530D-48AB-8A46-4611F21BBBC3} = {261905DE-9653-4567-B498-1F46BEA2A4F3} {E33FC359-F713-462C-8A8E-7EEA15E36BE1} = {96FD1258-1597-48A2-8D64-1ADAE13E886A} {3572F71A-83FE-459D-8370-002CA28827FE} = {7BC11E28-8D3B-4C5B-AC08-AB249CC95F6D} + {1F9FBADF-65C0-453D-9B45-7A88044F807F} = {2FDC8B91-FB95-4C57-8183-63587FBFE180} + {817D606F-A22D-485C-89CF-86062C8E97EF} = {CEAD0EA1-A971-4F5F-9EAE-C72F75D1F737} EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution SolutionGuid = {458346DD-B23F-4FDC-8F9D-A10F1882A4DB} diff --git a/MapImages/Shared/GroundOverlayPanel.cs b/MapImages/Shared/GroundOverlayPanel.cs index f9cf116d..6c1fb311 100644 --- a/MapImages/Shared/GroundOverlayPanel.cs +++ b/MapImages/Shared/GroundOverlayPanel.cs @@ -11,7 +11,11 @@ using System.IO.Compression; using System.Linq; using System.Threading.Tasks; using System.Xml; -#if WINDOWS_UWP +#if WINUI +using Microsoft.UI.Xaml; +using Microsoft.UI.Xaml.Controls; +using Microsoft.UI.Xaml.Media; +#elif WINDOWS_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 50215793..4b9ac229 100644 --- a/MapImages/Shared/WorldFileImage.cs +++ b/MapImages/Shared/WorldFileImage.cs @@ -8,7 +8,13 @@ using System.Globalization; using System.IO; using System.Linq; using System.Threading.Tasks; -#if WINDOWS_UWP +#if WINUI +using Windows.Foundation; +using Microsoft.UI.Xaml; +using Microsoft.UI.Xaml.Controls; +using Microsoft.UI.Xaml.Media; +using Microsoft.UI.Xaml.Media.Imaging; +#elif WINDOWS_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 a5a1928b..55dc337c 100644 --- a/MapImages/UWP/MapImages.UWP.csproj +++ b/MapImages/UWP/MapImages.UWP.csproj @@ -51,7 +51,7 @@ - 6.2.12 + 6.2.13 diff --git a/MapImages/UWP/Properties/AssemblyInfo.cs b/MapImages/UWP/Properties/AssemblyInfo.cs index 2e0b9abf..d8a2e212 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.0.1")] -[assembly: AssemblyFileVersion("6.0.1")] +[assembly: AssemblyVersion("6.1.0")] +[assembly: AssemblyFileVersion("6.1.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] diff --git a/MapImages/WPF/MapImages.WPF.csproj b/MapImages/WPF/MapImages.WPF.csproj index b2227ba2..38637a64 100644 --- a/MapImages/WPF/MapImages.WPF.csproj +++ b/MapImages/WPF/MapImages.WPF.csproj @@ -1,5 +1,4 @@  - net5.0-windows;netcoreapp3.1;net48;net462 true @@ -9,7 +8,7 @@ ..\..\MapControl.snk false XAML Map Control - 6.0.1 + 6.1.0 Image Support Library for XAML Map Control Clemens Fischer Copyright © 2021 Clemens Fischer diff --git a/MapImages/WinUI/MapImages.WinUI.csproj b/MapImages/WinUI/MapImages.WinUI.csproj new file mode 100644 index 00000000..b90eb4a1 --- /dev/null +++ b/MapImages/WinUI/MapImages.WinUI.csproj @@ -0,0 +1,50 @@ + + + net5.0-windows10.0.19041 + 10.0.17763.0 + MapControl.Images + win10-x86;win10-x64;win10-arm64 + true + ..\..\MapControl.snk + false + XAML Map Control + 6.1.0 + Image Support Library for XAML Map Control + Clemens Fischer + Copyright © 2021 Clemens Fischer + false + XAML.MapControl.MapImages + + + + DEBUG;WINUI + + + + WINUI + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/MapProjections/UWP/MapProjections.UWP.csproj b/MapProjections/UWP/MapProjections.UWP.csproj index 2659ea3a..0d322de0 100644 --- a/MapProjections/UWP/MapProjections.UWP.csproj +++ b/MapProjections/UWP/MapProjections.UWP.csproj @@ -57,7 +57,7 @@ - 6.2.12 + 6.2.13 1.4.1 diff --git a/MapProjections/UWP/Properties/AssemblyInfo.cs b/MapProjections/UWP/Properties/AssemblyInfo.cs index ad460484..ba1c7924 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.0.1")] -[assembly: AssemblyFileVersion("6.0.1")] +[assembly: AssemblyVersion("6.1.0")] +[assembly: AssemblyFileVersion("6.1.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] diff --git a/MapProjections/WPF/MapProjections.WPF.csproj b/MapProjections/WPF/MapProjections.WPF.csproj index 9508f3bc..e80854d2 100644 --- a/MapProjections/WPF/MapProjections.WPF.csproj +++ b/MapProjections/WPF/MapProjections.WPF.csproj @@ -9,7 +9,7 @@ ..\..\MapControl.snk false XAML Map Control - 6.0.1 + 6.1.0 Map Projections Library for XAML Map Control Clemens Fischer Copyright © 2021 Clemens Fischer diff --git a/MapProjections/WinUI/MapProjections.WinUI.csproj b/MapProjections/WinUI/MapProjections.WinUI.csproj index b29148fa..7a94302f 100644 --- a/MapProjections/WinUI/MapProjections.WinUI.csproj +++ b/MapProjections/WinUI/MapProjections.WinUI.csproj @@ -8,7 +8,7 @@ ..\..\MapControl.snk false XAML Map Control - 6.0.1 + 6.1.0 Map Projections Library for XAML Map Control Clemens Fischer Copyright © 2021 Clemens Fischer @@ -16,11 +16,13 @@ XAML.MapControl.MapProjections true + - WINUI + DEBUG;WINUI + - WINUI + WINUI @@ -32,9 +34,9 @@ - - - + + + diff --git a/SQLiteCache/UWP/Properties/AssemblyInfo.cs b/SQLiteCache/UWP/Properties/AssemblyInfo.cs index 4c03803e..a651a4a5 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.0.1")] -[assembly: AssemblyFileVersion("6.0.1")] +[assembly: AssemblyVersion("6.1.0")] +[assembly: AssemblyFileVersion("6.1.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] diff --git a/SQLiteCache/UWP/SQLiteCache.UWP.csproj b/SQLiteCache/UWP/SQLiteCache.UWP.csproj index b8f861fa..83f1d17f 100644 --- a/SQLiteCache/UWP/SQLiteCache.UWP.csproj +++ b/SQLiteCache/UWP/SQLiteCache.UWP.csproj @@ -49,7 +49,7 @@ - 6.2.12 + 6.2.13 1.0.115 diff --git a/SQLiteCache/WPF/SQLiteCache.WPF.csproj b/SQLiteCache/WPF/SQLiteCache.WPF.csproj index 64023481..204311e2 100644 --- a/SQLiteCache/WPF/SQLiteCache.WPF.csproj +++ b/SQLiteCache/WPF/SQLiteCache.WPF.csproj @@ -9,7 +9,7 @@ ..\..\MapControl.snk false XAML Map Control - 6.0.1 + 6.1.0 ObjectCache implementation based on SQLite Clemens Fischer Copyright © 2021 Clemens Fischer diff --git a/SQLiteCache/WinUI/SQLiteCache.WinUI.csproj b/SQLiteCache/WinUI/SQLiteCache.WinUI.csproj index b729efd0..b50cff6e 100644 --- a/SQLiteCache/WinUI/SQLiteCache.WinUI.csproj +++ b/SQLiteCache/WinUI/SQLiteCache.WinUI.csproj @@ -8,7 +8,7 @@ ..\..\MapControl.snk false XAML Map Control - 6.0.1 + 6.1.0 IImageCache implementation based on SQLite Clemens Fischer Copyright © 2021 Clemens Fischer @@ -17,6 +17,14 @@ true + + DEBUG;WINUI + + + + WINUI + + @@ -27,9 +35,9 @@ - - - + + + diff --git a/SampleApps/ProjectionDemo/ProjectionDemo.csproj b/SampleApps/ProjectionDemo/ProjectionDemo.csproj index ef5cb9bc..b501a207 100644 --- a/SampleApps/ProjectionDemo/ProjectionDemo.csproj +++ b/SampleApps/ProjectionDemo/ProjectionDemo.csproj @@ -4,7 +4,7 @@ WinExe net5.0-windows true - 6.0.1 + 6.1.0 Clemens Fischer XAML Map Control Map Projection Demo Application XAML Map Control diff --git a/SampleApps/UniversalApp/Properties/AssemblyInfo.cs b/SampleApps/UniversalApp/Properties/AssemblyInfo.cs index 69ba7493..17e6cc09 100644 --- a/SampleApps/UniversalApp/Properties/AssemblyInfo.cs +++ b/SampleApps/UniversalApp/Properties/AssemblyInfo.cs @@ -8,7 +8,7 @@ using System.Runtime.InteropServices; [assembly: AssemblyCopyright("Copyright © 2021 Clemens Fischer")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] -[assembly: AssemblyVersion("6.0.1")] -[assembly: AssemblyFileVersion("6.0.1")] +[assembly: AssemblyVersion("6.1.0")] +[assembly: AssemblyFileVersion("6.1.0")] [assembly: AssemblyConfiguration("")] [assembly: ComVisible(false)] diff --git a/SampleApps/UniversalApp/UniversalApp.csproj b/SampleApps/UniversalApp/UniversalApp.csproj index 87d30d18..a4c69859 100644 --- a/SampleApps/UniversalApp/UniversalApp.csproj +++ b/SampleApps/UniversalApp/UniversalApp.csproj @@ -99,7 +99,7 @@ - 6.2.12 + 6.2.13 diff --git a/SampleApps/WinUiApp (Package)/WinUiApp (Package).wapproj b/SampleApps/WinUiApp (Package)/WinUiApp (Package).wapproj index 69e03b79..4fd03b63 100644 --- a/SampleApps/WinUiApp (Package)/WinUiApp (Package).wapproj +++ b/SampleApps/WinUiApp (Package)/WinUiApp (Package).wapproj @@ -48,10 +48,10 @@ - + build - + build diff --git a/SampleApps/WinUiApp/WinUiApp.csproj b/SampleApps/WinUiApp/WinUiApp.csproj index d5f5c5cb..80d3569a 100644 --- a/SampleApps/WinUiApp/WinUiApp.csproj +++ b/SampleApps/WinUiApp/WinUiApp.csproj @@ -9,19 +9,21 @@ win10-x64 true XAML Map Control - 6.0.1 + 6.1.0 XAML Map Control WinUI Sample Application Clemens Fischer Copyright © 2021 Clemens Fischer none + - WINUI + DEBUG;WINUI + WINUI - + @@ -32,9 +34,9 @@ - - - + + + diff --git a/SampleApps/WpfApplication/WpfApplication.csproj b/SampleApps/WpfApplication/WpfApplication.csproj index 977c80d0..d51ad195 100644 --- a/SampleApps/WpfApplication/WpfApplication.csproj +++ b/SampleApps/WpfApplication/WpfApplication.csproj @@ -5,7 +5,7 @@ true WpfApplication XAML Map Control - 6.0.1 + 6.1.0 XAML Map Control WPF Sample Application Clemens Fischer Copyright © 2021 Clemens Fischer