2025-09-14 21:02:21 +02:00
<Project Sdk= "Microsoft.NET.Sdk" >
<PropertyGroup >
<TargetFramework > net9.0-windows10.0.26100.0</TargetFramework>
<TargetPlatformMinVersion > 10.0.17763.0</TargetPlatformMinVersion>
<UseUwp > true</UseUwp>
<DefineConstants > UWP</DefineConstants>
<RootNamespace > MapControl</RootNamespace>
<AssemblyTitle > XAML Map Control Library for UWP</AssemblyTitle>
<GeneratePackageOnBuild > $(GeneratePackage)</GeneratePackageOnBuild>
<PackageId > XAML.MapControl.UWP</PackageId>
<Title > $(AssemblyTitle)</Title>
<Description > A set of UWP controls for rendering raster maps from different providers like OpenStreetMap and various types of map overlays</Description>
2025-09-19 11:53:25 +02:00
<AllowUnsafeBlocks > true</AllowUnsafeBlocks>
2025-09-15 18:20:06 +02:00
<DisableRuntimeMarshalling > true</DisableRuntimeMarshalling>
<DefaultLanguage > en-US</DefaultLanguage>
2025-09-14 21:02:21 +02:00
</PropertyGroup>
<ItemGroup >
<Folder Include= "Themes\" />
</ItemGroup>
<ItemGroup >
<Compile Include= "..\Shared\*.cs" />
<Compile Include= "..\WinUI\*.cs" />
</ItemGroup>
<ItemGroup >
2025-11-12 17:16:47 +01:00
<PackageReference Include= "Microsoft.Extensions.Caching.Abstractions" Version= "10.0.0" />
<PackageReference Include= "Microsoft.Extensions.Caching.Memory" Version= "10.0.0" />
2025-09-14 21:02:21 +02:00
</ItemGroup>
</Project>