2024-05-19 23:23:27 +02:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
<PropertyGroup>
|
2024-05-23 21:28:30 +02:00
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
2024-05-19 23:23:27 +02:00
|
|
|
<Nullable>disable</Nullable>
|
2024-05-22 16:15:29 +02:00
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
2024-05-19 23:23:27 +02:00
|
|
|
<RootNamespace>MapControl</RootNamespace>
|
|
|
|
|
<AssemblyTitle>XAML Map Control Library for Avalonia UI</AssemblyTitle>
|
|
|
|
|
<Product>XAML Map Control</Product>
|
|
|
|
|
<Version>10.0.0</Version>
|
|
|
|
|
<Authors>Clemens Fischer</Authors>
|
|
|
|
|
<Copyright>Copyright © 2024 Clemens Fischer</Copyright>
|
|
|
|
|
<SignAssembly>true</SignAssembly>
|
|
|
|
|
<AssemblyOriginatorKeyFile>..\..\MapControl.snk</AssemblyOriginatorKeyFile>
|
|
|
|
|
<DelaySign>false</DelaySign>
|
|
|
|
|
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
|
|
|
|
|
<PackageId>XAML.MapControl</PackageId>
|
|
|
|
|
<DefineConstants>AVALONIA</DefineConstants>
|
|
|
|
|
</PropertyGroup>
|
2024-05-21 00:00:30 +02:00
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-05-22 12:12:31 +02:00
|
|
|
<Compile Include="..\Shared\*.cs" />
|
|
|
|
|
<Compile Remove="..\Shared\BindingHelper.cs" />
|
|
|
|
|
<Compile Remove="..\Shared\GeoImage.cs" />
|
|
|
|
|
<Compile Remove="..\Shared\MapGraticule.cs" />
|
|
|
|
|
<Compile Remove="..\Shared\MapItem.cs" />
|
|
|
|
|
<Compile Remove="..\Shared\MapItemsControl.cs" />
|
|
|
|
|
<Compile Remove="..\Shared\MapOverlay.cs" />
|
|
|
|
|
<Compile Remove="..\Shared\MapPath.cs" />
|
|
|
|
|
<Compile Remove="..\Shared\MapPolyline.cs" />
|
|
|
|
|
<Compile Remove="..\Shared\MapPolygon.cs" />
|
|
|
|
|
<Compile Remove="..\Shared\MapScale.cs" />
|
|
|
|
|
<Compile Remove="..\Shared\PushpinBorder.cs" />
|
|
|
|
|
<Compile Remove="..\Shared\ViewTransform.cs" />
|
2024-05-21 00:00:30 +02:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
2024-05-19 23:23:27 +02:00
|
|
|
<ItemGroup>
|
2024-05-21 00:00:30 +02:00
|
|
|
<None Include="..\..\MapControl.snk" Link="MapControl.snk" />
|
2024-05-19 23:23:27 +02:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Avalonia" Version="11.0.10" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="8.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="8.0.0" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|