Version 7.0: WinUI

This commit is contained in:
Clemens 2021-11-17 23:17:11 +01:00
parent 448f599d96
commit 9f61b90795
56 changed files with 94 additions and 81 deletions

View file

@ -3,7 +3,7 @@
// Licensed under the Microsoft Public License (Ms-PL) // Licensed under the Microsoft Public License (Ms-PL)
using System; using System;
#if !WINUI && !WINDOWS_UWP #if !WINUI && !UWP
using System.Windows; using System.Windows;
#endif #endif

View file

@ -3,7 +3,7 @@
// Licensed under the Microsoft Public License (Ms-PL) // Licensed under the Microsoft Public License (Ms-PL)
using System; using System;
#if !WINUI && !WINDOWS_UWP #if !WINUI && !UWP
using System.Windows; using System.Windows;
#endif #endif

View file

@ -3,7 +3,7 @@
// Licensed under the Microsoft Public License (Ms-PL) // Licensed under the Microsoft Public License (Ms-PL)
using System; using System;
#if WINUI || WINDOWS_UWP #if WINUI || UWP
using Windows.Foundation; using Windows.Foundation;
#else #else
using System.Windows; using System.Windows;

View file

@ -5,7 +5,7 @@
#if WINUI #if WINUI
using Microsoft.UI.Xaml; using Microsoft.UI.Xaml;
using Microsoft.UI.Xaml.Data; using Microsoft.UI.Xaml.Data;
#elif WINDOWS_UWP #elif UWP
using Windows.UI.Xaml; using Windows.UI.Xaml;
using Windows.UI.Xaml.Data; using Windows.UI.Xaml.Data;
#else #else

View file

@ -9,7 +9,7 @@ using System.Linq;
using System.Xml.Linq; using System.Xml.Linq;
#if WINUI #if WINUI
using Microsoft.UI.Xaml; using Microsoft.UI.Xaml;
#elif WINDOWS_UWP #elif UWP
using Windows.UI.Xaml; using Windows.UI.Xaml;
#else #else
using System.Windows; using System.Windows;

View file

@ -10,7 +10,7 @@ namespace MapControl
/// <summary> /// <summary>
/// A geographic bounding box with south and north latitude and west and east longitude values in degrees. /// A geographic bounding box with south and north latitude and west and east longitude values in degrees.
/// </summary> /// </summary>
#if !WINDOWS_UWP #if !UWP
[System.ComponentModel.TypeConverter(typeof(BoundingBoxConverter))] [System.ComponentModel.TypeConverter(typeof(BoundingBoxConverter))]
#endif #endif
public class BoundingBox public class BoundingBox

View file

@ -4,7 +4,7 @@
using System; using System;
using System.Globalization; using System.Globalization;
#if WINUI || WINDOWS_UWP #if WINUI || UWP
using Windows.Foundation; using Windows.Foundation;
#else #else
using System.Windows; using System.Windows;

View file

@ -3,7 +3,7 @@
// Licensed under the Microsoft Public License (Ms-PL) // Licensed under the Microsoft Public License (Ms-PL)
using System; using System;
#if !WINUI && !WINDOWS_UWP #if !WINUI && !UWP
using System.Windows; using System.Windows;
#endif #endif

View file

@ -11,7 +11,7 @@ using System.Threading.Tasks;
#if WINUI #if WINUI
using Microsoft.UI.Xaml.Media; using Microsoft.UI.Xaml.Media;
using Microsoft.UI.Xaml.Media.Imaging; using Microsoft.UI.Xaml.Media.Imaging;
#elif WINDOWS_UWP #elif UWP
using Windows.UI.Xaml.Media; using Windows.UI.Xaml.Media;
using Windows.UI.Xaml.Media.Imaging; using Windows.UI.Xaml.Media.Imaging;
#else #else

View file

@ -3,7 +3,7 @@
// Licensed under the Microsoft Public License (Ms-PL) // Licensed under the Microsoft Public License (Ms-PL)
using System; using System;
#if WINUI || WINDOWS_UWP #if WINUI || UWP
using Windows.Foundation; using Windows.Foundation;
#else #else
using System.Windows; using System.Windows;

View file

@ -10,7 +10,7 @@ namespace MapControl
/// <summary> /// <summary>
/// A geographic location with latitude and longitude values in degrees. /// A geographic location with latitude and longitude values in degrees.
/// </summary> /// </summary>
#if !WINDOWS_UWP #if !UWP
[System.ComponentModel.TypeConverter(typeof(LocationConverter))] [System.ComponentModel.TypeConverter(typeof(LocationConverter))]
#endif #endif
public class Location : IEquatable<Location> public class Location : IEquatable<Location>

View file

@ -12,7 +12,7 @@ namespace MapControl
/// A collection of Locations with support for string parsing /// A collection of Locations with support for string parsing
/// and calculation of great circle and rhumb line locations. /// and calculation of great circle and rhumb line locations.
/// </summary> /// </summary>
#if !WINDOWS_UWP #if !UWP
[System.ComponentModel.TypeConverter(typeof(LocationCollectionConverter))] [System.ComponentModel.TypeConverter(typeof(LocationCollectionConverter))]
#endif #endif
public class LocationCollection : List<Location> public class LocationCollection : List<Location>

View file

@ -8,7 +8,7 @@ using Windows.Foundation;
using Microsoft.UI.Xaml; using Microsoft.UI.Xaml;
using Microsoft.UI.Xaml.Media; using Microsoft.UI.Xaml.Media;
using Microsoft.UI.Xaml.Media.Animation; using Microsoft.UI.Xaml.Media.Animation;
#elif WINDOWS_UWP #elif UWP
using Windows.Foundation; using Windows.Foundation;
using Windows.UI.Xaml; using Windows.UI.Xaml;
using Windows.UI.Xaml.Media; using Windows.UI.Xaml.Media;

View file

@ -6,7 +6,7 @@ using System;
using System.Globalization; using System.Globalization;
#if WINUI #if WINUI
using Microsoft.UI.Xaml; using Microsoft.UI.Xaml;
#elif WINDOWS_UWP #elif UWP
using Windows.UI.Xaml; using Windows.UI.Xaml;
#else #else
using System.Windows; using System.Windows;

View file

@ -13,7 +13,7 @@ using Microsoft.UI.Xaml;
using Microsoft.UI.Xaml.Controls; using Microsoft.UI.Xaml.Controls;
using Microsoft.UI.Xaml.Media; using Microsoft.UI.Xaml.Media;
using Microsoft.UI.Xaml.Media.Animation; using Microsoft.UI.Xaml.Media.Animation;
#elif WINDOWS_UWP #elif UWP
using Windows.Foundation; using Windows.Foundation;
using Windows.UI.Xaml; using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls; using Windows.UI.Xaml.Controls;

View file

@ -8,7 +8,7 @@ using Windows.Foundation;
using Microsoft.UI.Xaml; using Microsoft.UI.Xaml;
using Microsoft.UI.Xaml.Controls; using Microsoft.UI.Xaml.Controls;
using Microsoft.UI.Xaml.Data; using Microsoft.UI.Xaml.Data;
#elif WINDOWS_UWP #elif UWP
using Windows.Foundation; using Windows.Foundation;
using Windows.UI.Xaml; using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls; using Windows.UI.Xaml.Controls;

View file

@ -5,7 +5,7 @@
#if WINUI #if WINUI
using Microsoft.UI.Xaml.Media; using Microsoft.UI.Xaml.Media;
using Windows.UI.Text; using Windows.UI.Text;
#elif WINDOWS_UWP #elif UWP
using Windows.UI.Text; using Windows.UI.Text;
using Windows.UI.Xaml.Media; using Windows.UI.Xaml.Media;
#else #else

View file

@ -9,7 +9,7 @@ using Windows.Foundation;
using Microsoft.UI.Xaml; using Microsoft.UI.Xaml;
using Microsoft.UI.Xaml.Controls; using Microsoft.UI.Xaml.Controls;
using Microsoft.UI.Xaml.Media; using Microsoft.UI.Xaml.Media;
#elif WINDOWS_UWP #elif UWP
using Windows.Foundation; using Windows.Foundation;
using Windows.UI.Xaml; using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls; using Windows.UI.Xaml.Controls;

View file

@ -5,7 +5,7 @@
#if WINUI #if WINUI
using Microsoft.UI.Xaml; using Microsoft.UI.Xaml;
using Microsoft.UI.Xaml.Media; using Microsoft.UI.Xaml.Media;
#elif WINDOWS_UWP #elif UWP
using Windows.UI.Xaml; using Windows.UI.Xaml;
using Windows.UI.Xaml.Media; using Windows.UI.Xaml.Media;
#else #else

View file

@ -7,7 +7,7 @@ using System.Linq;
#if WINUI #if WINUI
using Microsoft.UI.Xaml; using Microsoft.UI.Xaml;
using Microsoft.UI.Xaml.Media; using Microsoft.UI.Xaml.Media;
#elif WINDOWS_UWP #elif UWP
using Windows.UI.Xaml; using Windows.UI.Xaml;
using Windows.UI.Xaml.Media; using Windows.UI.Xaml.Media;
#else #else
@ -29,7 +29,7 @@ namespace MapControl
/// <summary> /// <summary>
/// Gets or sets the Locations that define the polygon points. /// Gets or sets the Locations that define the polygon points.
/// </summary> /// </summary>
#if !WINDOWS_UWP #if !UWP
[System.ComponentModel.TypeConverter(typeof(LocationCollectionConverter))] [System.ComponentModel.TypeConverter(typeof(LocationCollectionConverter))]
#endif #endif
public IEnumerable<Location> Locations public IEnumerable<Location> Locations

View file

@ -7,7 +7,7 @@ using System.Linq;
#if WINUI #if WINUI
using Microsoft.UI.Xaml; using Microsoft.UI.Xaml;
using Microsoft.UI.Xaml.Media; using Microsoft.UI.Xaml.Media;
#elif WINDOWS_UWP #elif UWP
using Windows.UI.Xaml; using Windows.UI.Xaml;
using Windows.UI.Xaml.Media; using Windows.UI.Xaml.Media;
#else #else
@ -29,7 +29,7 @@ namespace MapControl
/// <summary> /// <summary>
/// Gets or sets the Locations that define the polyline points. /// Gets or sets the Locations that define the polyline points.
/// </summary> /// </summary>
#if !WINDOWS_UWP #if !UWP
[System.ComponentModel.TypeConverter(typeof(LocationCollectionConverter))] [System.ComponentModel.TypeConverter(typeof(LocationCollectionConverter))]
#endif #endif
public IEnumerable<Location> Locations public IEnumerable<Location> Locations

View file

@ -4,7 +4,7 @@
using System; using System;
using System.Globalization; using System.Globalization;
#if WINUI || WINDOWS_UWP #if WINUI || UWP
using Windows.Foundation; using Windows.Foundation;
#else #else
using System.Windows; using System.Windows;

View file

@ -10,7 +10,7 @@ using Microsoft.UI.Xaml;
using Microsoft.UI.Xaml.Controls; using Microsoft.UI.Xaml.Controls;
using Microsoft.UI.Xaml.Media; using Microsoft.UI.Xaml.Media;
using Microsoft.UI.Xaml.Shapes; using Microsoft.UI.Xaml.Shapes;
#elif WINDOWS_UWP #elif UWP
using Windows.Foundation; using Windows.Foundation;
using Windows.UI.Xaml; using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls; using Windows.UI.Xaml.Controls;
@ -48,7 +48,7 @@ namespace MapControl
line.SetBinding(Shape.StrokeProperty, this.GetBinding(nameof(Stroke))); line.SetBinding(Shape.StrokeProperty, this.GetBinding(nameof(Stroke)));
line.SetBinding(Shape.StrokeThicknessProperty, this.GetBinding(nameof(StrokeThickness))); line.SetBinding(Shape.StrokeThicknessProperty, this.GetBinding(nameof(StrokeThickness)));
#if WINUI || WINDOWS_UWP #if WINUI || UWP
label.SetBinding(TextBlock.ForegroundProperty, this.GetBinding(nameof(Foreground))); label.SetBinding(TextBlock.ForegroundProperty, this.GetBinding(nameof(Foreground)));
#endif #endif
Children.Add(line); Children.Add(line);

View file

@ -10,7 +10,7 @@ using System.Threading.Tasks;
using Windows.Foundation; using Windows.Foundation;
using Microsoft.UI.Xaml; using Microsoft.UI.Xaml;
using Microsoft.UI.Xaml.Media; using Microsoft.UI.Xaml.Media;
#elif WINDOWS_UWP #elif UWP
using Windows.Foundation; using Windows.Foundation;
using Windows.UI.Xaml; using Windows.UI.Xaml;
using Windows.UI.Xaml.Media; using Windows.UI.Xaml.Media;

View file

@ -10,7 +10,7 @@ using Microsoft.UI.Dispatching;
using Microsoft.UI.Xaml; using Microsoft.UI.Xaml;
using Microsoft.UI.Xaml.Controls; using Microsoft.UI.Xaml.Controls;
using Microsoft.UI.Xaml.Media; using Microsoft.UI.Xaml.Media;
#elif WINDOWS_UWP #elif UWP
using Windows.UI.Xaml; using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls; using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Media; using Windows.UI.Xaml.Media;
@ -75,7 +75,7 @@ namespace MapControl
updateTimer.Interval = UpdateInterval; updateTimer.Interval = UpdateInterval;
updateTimer.Tick += async (s, e) => await Update(); updateTimer.Tick += async (s, e) => await Update();
#if WINUI || WINDOWS_UWP #if WINUI || UWP
MapPanel.InitMapElement(this); MapPanel.InitMapElement(this);
#endif #endif
} }

View file

@ -3,7 +3,7 @@
// Licensed under the Microsoft Public License (Ms-PL) // Licensed under the Microsoft Public License (Ms-PL)
using System; using System;
#if !WINUI && !WINDOWS_UWP #if !WINUI && !UWP
using System.Windows; using System.Windows;
#endif #endif

View file

@ -3,7 +3,7 @@
// Licensed under the Microsoft Public License (Ms-PL) // Licensed under the Microsoft Public License (Ms-PL)
using System; using System;
#if !WINUI && !WINDOWS_UWP #if !WINUI && !UWP
using System.Windows; using System.Windows;
#endif #endif

View file

@ -7,7 +7,7 @@ using Microsoft.UI.Xaml;
using Microsoft.UI.Xaml.Controls; using Microsoft.UI.Xaml.Controls;
using Microsoft.UI.Xaml.Media; using Microsoft.UI.Xaml.Media;
using Microsoft.UI.Xaml.Media.Animation; using Microsoft.UI.Xaml.Media.Animation;
#elif WINDOWS_UWP #elif UWP
using Windows.UI.Xaml; using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls; using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Media; using Windows.UI.Xaml.Media;

View file

@ -6,7 +6,7 @@ using System;
using System.Threading.Tasks; using System.Threading.Tasks;
#if WINUI #if WINUI
using Microsoft.UI.Xaml.Media; using Microsoft.UI.Xaml.Media;
#elif WINDOWS_UWP #elif UWP
using Windows.UI.Xaml.Media; using Windows.UI.Xaml.Media;
#else #else
using System.Windows.Media; using System.Windows.Media;
@ -17,7 +17,7 @@ namespace MapControl
/// <summary> /// <summary>
/// Provides the download Uri or ImageSource of map tiles. /// Provides the download Uri or ImageSource of map tiles.
/// </summary> /// </summary>
#if !WINDOWS_UWP #if !UWP
[System.ComponentModel.TypeConverter(typeof(TileSourceConverter))] [System.ComponentModel.TypeConverter(typeof(TileSourceConverter))]
#endif #endif
public class TileSource public class TileSource

View file

@ -6,7 +6,7 @@ using System;
#if WINUI #if WINUI
using Windows.Foundation; using Windows.Foundation;
using Microsoft.UI.Xaml.Media; using Microsoft.UI.Xaml.Media;
#elif WINDOWS_UWP #elif UWP
using Windows.Foundation; using Windows.Foundation;
using Windows.UI.Xaml.Media; using Windows.UI.Xaml.Media;
#else #else

View file

@ -3,7 +3,7 @@
// Licensed under the Microsoft Public License (Ms-PL) // Licensed under the Microsoft Public License (Ms-PL)
using System; using System;
#if !WINUI && !WINDOWS_UWP #if !WINUI && !UWP
using System.Windows; using System.Windows;
#endif #endif

View file

@ -12,7 +12,7 @@ using System.Xml.Linq;
using Windows.Foundation; using Windows.Foundation;
using Microsoft.UI.Xaml; using Microsoft.UI.Xaml;
using Microsoft.UI.Xaml.Media; using Microsoft.UI.Xaml.Media;
#elif WINDOWS_UWP #elif UWP
using Windows.Foundation; using Windows.Foundation;
using Windows.UI.Xaml; using Windows.UI.Xaml;
using Windows.UI.Xaml.Media; using Windows.UI.Xaml.Media;

View file

@ -8,7 +8,7 @@ using System.Globalization;
using System.Linq; using System.Linq;
using System.Xml.Linq; using System.Xml.Linq;
using System.Threading.Tasks; using System.Threading.Tasks;
#if !WINUI && !WINDOWS_UWP #if !WINUI && !UWP
using System.Windows; using System.Windows;
#endif #endif

View file

@ -10,7 +10,7 @@ using System.Threading.Tasks;
#if WINUI #if WINUI
using Windows.Foundation; using Windows.Foundation;
using Microsoft.UI.Xaml; using Microsoft.UI.Xaml;
#elif WINDOWS_UWP #elif UWP
using Windows.Foundation; using Windows.Foundation;
using Windows.UI.Xaml; using Windows.UI.Xaml;
#else #else

View file

@ -2,7 +2,7 @@
// © 2021 Clemens Fischer // © 2021 Clemens Fischer
// Licensed under the Microsoft Public License (Ms-PL) // Licensed under the Microsoft Public License (Ms-PL)
#if !WINUI && !WINDOWS_UWP #if !WINUI && !UWP
using System.Windows; using System.Windows;
#endif #endif

View file

@ -9,7 +9,7 @@ using System.Linq;
using Windows.Foundation; using Windows.Foundation;
using Microsoft.UI.Xaml.Controls; using Microsoft.UI.Xaml.Controls;
using Microsoft.UI.Xaml.Media; using Microsoft.UI.Xaml.Media;
#elif WINDOWS_UWP #elif UWP
using Windows.Foundation; using Windows.Foundation;
using Windows.UI.Xaml.Controls; using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Media; using Windows.UI.Xaml.Media;

View file

@ -3,7 +3,7 @@
// Licensed under the Microsoft Public License (Ms-PL) // Licensed under the Microsoft Public License (Ms-PL)
using System; using System;
#if !WINUI && !WINDOWS_UWP #if !WINUI && !UWP
using System.Windows; using System.Windows;
#endif #endif

View file

@ -23,7 +23,7 @@
<DebugType>full</DebugType> <DebugType>full</DebugType>
<Optimize>false</Optimize> <Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath> <OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;WINDOWS_UWP</DefineConstants> <DefineConstants>DEBUG;UWP</DefineConstants>
<ErrorReport>prompt</ErrorReport> <ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel> <WarningLevel>4</WarningLevel>
</PropertyGroup> </PropertyGroup>
@ -32,7 +32,7 @@
<DebugType>none</DebugType> <DebugType>none</DebugType>
<Optimize>true</Optimize> <Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath> <OutputPath>bin\Release\</OutputPath>
<DefineConstants>WINDOWS_UWP</DefineConstants> <DefineConstants>UWP</DefineConstants>
<ErrorReport>prompt</ErrorReport> <ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel> <WarningLevel>4</WarningLevel>
<GenerateLibraryLayout>true</GenerateLibraryLayout> <GenerateLibraryLayout>true</GenerateLibraryLayout>
@ -182,23 +182,53 @@
<Compile Include="..\Shared\WorldMercatorProjection.cs"> <Compile Include="..\Shared\WorldMercatorProjection.cs">
<Link>WorldMercatorProjection.cs</Link> <Link>WorldMercatorProjection.cs</Link>
</Compile> </Compile>
<Compile Include="Animatable.UWP.cs" /> <Compile Include="..\WinUI\Animatable.WinUI.cs">
<Compile Include="ImageFileCache.UWP.cs" /> <Link>Animatable.WinUI.cs</Link>
<Compile Include="Map.UWP.cs" /> </Compile>
<Compile Include="MapBase.UWP.cs" /> <Compile Include="..\WinUI\ImageFileCache.WinUI.cs">
<Compile Include="MapGraticule.UWP.cs" /> <Link>ImageFileCache.WinUI.cs</Link>
<Compile Include="MapItemsControl.UWP.cs" /> </Compile>
<Compile Include="MapOverlay.UWP.cs" /> <Compile Include="..\WinUI\ImageLoader.WinUI.cs">
<Compile Include="MapPanel.UWP.cs" /> <Link>ImageLoader.WinUI.cs</Link>
<Compile Include="MapPath.UWP.cs" /> </Compile>
<Compile Include="Matrix.UWP.cs" /> <Compile Include="..\WinUI\Map.WinUI.cs">
<Compile Include="Point.UWP.cs" /> <Link>Map.WinUI.cs</Link>
</Compile>
<Compile Include="..\WinUI\MapBase.WinUI.cs">
<Link>MapBase.WinUI.cs</Link>
</Compile>
<Compile Include="..\WinUI\MapContentControl.WinUI.cs">
<Link>MapContentControl.WinUI.cs</Link>
</Compile>
<Compile Include="..\WinUI\MapGraticule.WinUI.cs">
<Link>MapGraticule.WinUI.cs</Link>
</Compile>
<Compile Include="..\WinUI\MapItemsControl.WinUI.cs">
<Link>MapItemsControl.WinUI.cs</Link>
</Compile>
<Compile Include="..\WinUI\MapOverlay.WinUI.cs">
<Link>MapOverlay.WinUI.cs</Link>
</Compile>
<Compile Include="..\WinUI\MapPanel.WinUI.cs">
<Link>MapPanel.WinUI.cs</Link>
</Compile>
<Compile Include="..\WinUI\MapPath.WinUI.cs">
<Link>MapPath.WinUI.cs</Link>
</Compile>
<Compile Include="..\WinUI\Matrix.WinUI.cs">
<Link>Matrix.WinUI.cs</Link>
</Compile>
<Compile Include="..\WinUI\Point.WinUI.cs">
<Link>Point.WinUI.cs</Link>
</Compile>
<Compile Include="..\WinUI\Tile.WinUI.cs">
<Link>Tile.WinUI.cs</Link>
</Compile>
<Compile Include="..\WinUI\Vector.WinUI.cs">
<Link>Vector.WinUI.cs</Link>
</Compile>
<Compile Include="Properties\AssemblyInfo.cs" /> <Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="MapContentControl.UWP.cs" />
<Compile Include="Tile.UWP.cs" />
<Compile Include="TileImageLoader.UWP.cs" /> <Compile Include="TileImageLoader.UWP.cs" />
<Compile Include="ImageLoader.UWP.cs" />
<Compile Include="Vector.UWP.cs" />
<EmbeddedResource Include="Properties\MapControl.UWP.rd.xml" /> <EmbeddedResource Include="Properties\MapControl.UWP.rd.xml" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>

View file

@ -7,8 +7,8 @@ using System.Runtime.InteropServices;
[assembly: AssemblyCompany("Clemens Fischer")] [assembly: AssemblyCompany("Clemens Fischer")]
[assembly: AssemblyCopyright("Copyright © 2021 Clemens Fischer")] [assembly: AssemblyCopyright("Copyright © 2021 Clemens Fischer")]
[assembly: AssemblyTrademark("")] [assembly: AssemblyTrademark("")]
[assembly: AssemblyVersion("6.1.0")] [assembly: AssemblyVersion("7.0.0")]
[assembly: AssemblyFileVersion("6.1.0")] [assembly: AssemblyFileVersion("7.0.0")]
[assembly: AssemblyConfiguration("")] [assembly: AssemblyConfiguration("")]
[assembly: AssemblyCulture("")] [assembly: AssemblyCulture("")]
[assembly: ComVisible(false)] [assembly: ComVisible(false)]

View file

@ -7,7 +7,7 @@
<AssemblyOriginatorKeyFile>..\..\MapControl.snk</AssemblyOriginatorKeyFile> <AssemblyOriginatorKeyFile>..\..\MapControl.snk</AssemblyOriginatorKeyFile>
<DelaySign>false</DelaySign> <DelaySign>false</DelaySign>
<Product>XAML Map Control</Product> <Product>XAML Map Control</Product>
<Version>6.1.0</Version> <Version>7.0.0</Version>
<Description>XAML Map Control Library</Description> <Description>XAML Map Control Library</Description>
<Authors>Clemens Fischer</Authors> <Authors>Clemens Fischer</Authors>
<Copyright>Copyright © 2021 Clemens Fischer</Copyright> <Copyright>Copyright © 2021 Clemens Fischer</Copyright>
@ -15,18 +15,6 @@
<PackageId>XAML.MapControl</PackageId> <PackageId>XAML.MapControl</PackageId>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>none</DebugType>
<DebugSymbols>false</DebugSymbols>
<DefineConstants></DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>full</DebugType>
<DebugSymbols>true</DebugSymbols>
<DefineConstants>DEBUG</DefineConstants>
</PropertyGroup>
<ItemGroup> <ItemGroup>
<None Include="..\..\MapControl.snk" /> <None Include="..\..\MapControl.snk" />
</ItemGroup> </ItemGroup>

View file

@ -9,7 +9,7 @@
<AssemblyOriginatorKeyFile>..\..\MapControl.snk</AssemblyOriginatorKeyFile> <AssemblyOriginatorKeyFile>..\..\MapControl.snk</AssemblyOriginatorKeyFile>
<DelaySign>false</DelaySign> <DelaySign>false</DelaySign>
<Product>XAML Map Control</Product> <Product>XAML Map Control</Product>
<Version>6.1.0</Version> <Version>7.0.0</Version>
<Description>XAML Map Control Library</Description> <Description>XAML Map Control Library</Description>
<Authors>Clemens Fischer</Authors> <Authors>Clemens Fischer</Authors>
<Copyright>Copyright © 2021 Clemens Fischer</Copyright> <Copyright>Copyright © 2021 Clemens Fischer</Copyright>
@ -18,7 +18,7 @@
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DefineConstants>DEBUG;WINUI</DefineConstants> <DefineConstants>WINUI</DefineConstants>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
@ -31,11 +31,6 @@
<ItemGroup> <ItemGroup>
<Compile Include="..\Shared\*.cs" /> <Compile Include="..\Shared\*.cs" />
<Compile Include="..\UWP\*.cs" />
</ItemGroup>
<ItemGroup>
<Compile Remove="..\UWP\TileImageLoader.UWP.cs" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>