2021-11-18 22:12:13 +01:00
<Project Sdk= "Microsoft.NET.Sdk" >
2019-12-08 22:28:04 +01:00
<PropertyGroup >
2025-09-14 21:11:48 +02:00
<TargetFrameworks > net9.0-windows;net462</TargetFrameworks>
2025-09-15 17:46:31 +02:00
<LangVersion Condition= "'$(TargetFramework)'=='net462'" > 12.0</LangVersion>
2019-12-08 22:28:04 +01:00
<UseWPF > true</UseWPF>
2024-06-26 11:05:00 +02:00
<DefineConstants > WPF</DefineConstants>
2019-12-08 22:28:04 +01:00
<RootNamespace > MapControl</RootNamespace>
2024-06-26 11:05:00 +02:00
<AssemblyTitle > XAML Map Control Library for WPF</AssemblyTitle>
2024-06-21 06:36:24 +02:00
<GeneratePackageOnBuild > $(GeneratePackage)</GeneratePackageOnBuild>
2024-09-11 17:33:54 +02:00
<PackageId > XAML.MapControl.WPF</PackageId>
2024-06-20 06:33:42 +02:00
<Title > $(AssemblyTitle)</Title>
2025-01-23 08:38:37 +01:00
<Description > A set of WPF controls for rendering raster maps from different providers like OpenStreetMap and various types of map overlays</Description>
2019-12-08 22:28:04 +01:00
</PropertyGroup>
<ItemGroup >
2021-06-14 21:41:37 +02:00
<Compile Include= "..\Shared\*.cs" />
2019-12-08 22:28:04 +01:00
</ItemGroup>
2025-03-16 13:39:56 +01:00
<ItemGroup >
<Compile Remove= "..\Shared\PolygonCollection.cs" />
</ItemGroup>
2024-02-03 20:53:32 +01:00
<ItemGroup Condition= "'$(TargetFramework)'=='net462'" >
2022-01-18 21:30:22 +01:00
<Reference Include= "System.IO.Compression" />
2019-12-08 22:28:04 +01:00
<Reference Include= "System.Net.Http" />
2024-02-03 20:53:32 +01:00
</ItemGroup>
<ItemGroup >
2025-09-14 21:02:21 +02:00
<PackageReference Include= "Microsoft.Extensions.Caching.Abstractions" Version= "9.0.9" />
<PackageReference Include= "Microsoft.Extensions.Caching.Memory" Version= "9.0.9" />
2019-12-08 22:28:04 +01:00
</ItemGroup>
</Project>