mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2025-12-06 07:12:04 +01:00
Version 7.0: WinUI
This commit is contained in:
parent
9f61b90795
commit
0820a77dd5
|
|
@ -9,7 +9,7 @@ using System.Text.RegularExpressions;
|
|||
using Microsoft.UI.Xaml;
|
||||
using Microsoft.UI.Xaml.Controls;
|
||||
using Microsoft.UI.Xaml.Documents;
|
||||
#elif WINDOWS_UWP
|
||||
#elif UWP
|
||||
using Windows.UI.Xaml;
|
||||
using Windows.UI.Xaml.Controls;
|
||||
using Windows.UI.Xaml.Documents;
|
||||
|
|
@ -47,7 +47,7 @@ namespace SampleApplication
|
|||
|
||||
var link = new Hyperlink { NavigateUri = uri };
|
||||
link.Inlines.Add(new Run { Text = match.Groups[1].Value });
|
||||
#if !WINUI && !WINDOWS_UWP
|
||||
#if !WINUI && !UWP
|
||||
link.ToolTip = uri.ToString();
|
||||
|
||||
link.RequestNavigate += (s, e) =>
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ using System.ComponentModel;
|
|||
using Microsoft.UI;
|
||||
using Microsoft.UI.Xaml;
|
||||
using Microsoft.UI.Xaml.Media;
|
||||
#elif WINDOWS_UWP
|
||||
#elif UWP
|
||||
using Windows.UI;
|
||||
using Windows.UI.Xaml;
|
||||
using Windows.UI.Xaml.Media;
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ using System.Runtime.InteropServices;
|
|||
[assembly: AssemblyCopyright("Copyright © 2021 Clemens Fischer")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
[assembly: AssemblyVersion("6.1.0")]
|
||||
[assembly: AssemblyFileVersion("6.1.0")]
|
||||
[assembly: AssemblyVersion("7.0.0")]
|
||||
[assembly: AssemblyFileVersion("7.0.0")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: ComVisible(false)]
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@
|
|||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<OutputPath>bin\x64\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;WINDOWS_UWP;CODE_ANALYSIS</DefineConstants>
|
||||
<DefineConstants>DEBUG;UWP</DefineConstants>
|
||||
<NoWarn>;2008</NoWarn>
|
||||
<DebugType>full</DebugType>
|
||||
<PlatformTarget>x64</PlatformTarget>
|
||||
|
|
@ -36,7 +36,7 @@
|
|||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
|
||||
<OutputPath>bin\x64\Release\</OutputPath>
|
||||
<DefineConstants>WINDOWS_UWP;CODE_ANALYSIS</DefineConstants>
|
||||
<DefineConstants>UWP</DefineConstants>
|
||||
<Optimize>true</Optimize>
|
||||
<NoWarn>;2008</NoWarn>
|
||||
<DebugType>none</DebugType>
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@
|
|||
<PublishProfile>win10-$(Platform).pubxml</PublishProfile>
|
||||
<UseWinUI>true</UseWinUI>
|
||||
<Product>XAML Map Control</Product>
|
||||
<Version>6.1.0</Version>
|
||||
<Version>7.0.0</Version>
|
||||
<Description>XAML Map Control WinUI Sample Application</Description>
|
||||
<Authors>Clemens Fischer</Authors>
|
||||
<Copyright>Copyright © 2021 Clemens Fischer</Copyright>
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
<UseWPF>true</UseWPF>
|
||||
<RootNamespace>SampleApplication</RootNamespace>
|
||||
<Product>XAML Map Control</Product>
|
||||
<Version>6.1.0</Version>
|
||||
<Version>7.0.0</Version>
|
||||
<Description>XAML Map Control WPF Sample Application</Description>
|
||||
<Authors>Clemens Fischer</Authors>
|
||||
<Copyright>Copyright © 2021 Clemens Fischer</Copyright>
|
||||
|
|
|
|||
Loading…
Reference in a new issue