2021-06-14 21:41:37 +02:00
<Project Sdk= "Microsoft.NET.Sdk" >
<PropertyGroup >
2024-11-29 16:43:18 +01:00
<TargetFramework > net8.0-windows10.0.17763.0</TargetFramework>
<RuntimeIdentifiers > win-x86;win-x64;win-arm64</RuntimeIdentifiers>
2021-11-17 22:21:34 +01:00
<UseWinUI > true</UseWinUI>
2024-06-26 11:05:00 +02:00
<DefineConstants > WINUI</DefineConstants>
2021-11-18 16:30:45 +01:00
<RootNamespace > MapControl</RootNamespace>
2022-01-11 19:42:12 +01:00
<AssemblyTitle > XAML Map Control Library for WinUI</AssemblyTitle>
2024-06-21 06:36:24 +02:00
<GeneratePackageOnBuild > $(GeneratePackage)</GeneratePackageOnBuild>
2024-09-11 17:33:54 +02:00
<PackageId > XAML.MapControl.WinUI</PackageId>
<Title > $(AssemblyTitle)</Title>
2025-01-23 08:38:37 +01:00
<Description > A set of WinUI controls for rendering raster maps from different providers like OpenStreetMap and various types of map overlays</Description>
2021-06-14 21:41:37 +02:00
</PropertyGroup>
<ItemGroup >
<Compile Include= "..\Shared\*.cs" />
2021-07-02 21:18:39 +02:00
</ItemGroup>
2024-05-22 12:12:31 +02:00
<ItemGroup >
<Compile Remove= "..\Shared\TypeConverters.cs" />
</ItemGroup>
2021-06-14 21:41:37 +02:00
<ItemGroup >
2025-01-23 08:38:37 +01:00
<!-- Directly referencing "Microsoft.Web.WebView2 is a workaround for a bug in WindowsAppSDK, https://github.com/microsoft/WindowsAppSDK/issues/4807 -->
2025-04-21 08:56:35 +02:00
<PackageReference Include= "Microsoft.WindowsAppSDK" Version= "1.7.250401001" />
2025-05-12 19:20:37 +02:00
<PackageReference Include= "Microsoft.Windows.SDK.BuildTools" Version= "10.0.26100.3916" />
2025-04-21 08:56:35 +02:00
<PackageReference Include= "Microsoft.Extensions.Caching.Abstractions" Version= "9.0.4" />
<PackageReference Include= "Microsoft.Extensions.Caching.Memory" Version= "9.0.4" />
2021-06-14 21:41:37 +02:00
</ItemGroup>
</Project>