2024-06-26 10:13:41 +02:00
<Project Sdk= "Microsoft.NET.Sdk" >
2024-05-19 23:23:27 +02:00
<PropertyGroup >
2024-05-23 21:28:30 +02:00
<TargetFramework > net6.0</TargetFramework>
2024-05-22 16:15:29 +02:00
<AllowUnsafeBlocks > true</AllowUnsafeBlocks>
2024-06-26 11:05:00 +02:00
<DefineConstants > AVALONIA</DefineConstants>
2024-05-19 23:23:27 +02:00
<RootNamespace > MapControl</RootNamespace>
<AssemblyTitle > XAML Map Control Library for Avalonia UI</AssemblyTitle>
2024-06-21 06:36:24 +02:00
<GeneratePackageOnBuild > $(GeneratePackage)</GeneratePackageOnBuild>
2024-09-11 17:33:54 +02:00
<PackageId > XAML.MapControl.Avalonia</PackageId>
<Title > $(AssemblyTitle)</Title>
2024-06-26 11:05:00 +02:00
<Description > A set of Avalonia UI controls for rendering raster maps from different providers (like OpenStreetMap and Bing Maps) and various types of map overlays</Description>
2024-05-19 23:23:27 +02:00
</PropertyGroup>
2024-05-21 00:00:30 +02:00
<ItemGroup >
2024-05-22 12:12:31 +02:00
<Compile Include= "..\Shared\*.cs" />
2024-05-21 00:00:30 +02:00
</ItemGroup>
2024-05-19 23:23:27 +02:00
<ItemGroup >
2024-08-14 17:27:14 +02:00
<PackageReference Include= "Avalonia" Version= "11.1.3" />
2024-05-19 23:23:27 +02:00
<PackageReference Include= "Microsoft.Extensions.Caching.Abstractions" Version= "8.0.0" />
<PackageReference Include= "Microsoft.Extensions.Caching.Memory" Version= "8.0.0" />
</ItemGroup>
</Project>