2024-05-19 23:23:27 +02:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
|
<Nullable>disable</Nullable>
|
|
|
|
|
<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>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Include="..\Shared\BoundingBox.cs" Link="BoundingBox.cs" />
|
|
|
|
|
<Compile Include="..\Shared\ImageFileCache.cs" Link="ImageFileCache.cs" />
|
|
|
|
|
<Compile Include="..\Shared\ImageLoader.cs" Link="ImageLoader.cs" />
|
|
|
|
|
<Compile Include="..\Shared\Location.cs" Link="Location.cs" />
|
|
|
|
|
<Compile Include="..\Shared\LocationCollection.cs" Link="LocationCollection.cs" />
|
2024-05-20 23:24:34 +02:00
|
|
|
<Compile Include="..\Shared\MapBaseCommon.cs" Link="MapBaseCommon.cs" />
|
|
|
|
|
<Compile Include="..\Shared\MapPanel.cs" Link="MapPanel.cs" />
|
2024-05-19 23:23:27 +02:00
|
|
|
<Compile Include="..\Shared\MapProjection.cs" Link="MapProjection.cs" />
|
2024-05-20 23:24:34 +02:00
|
|
|
<Compile Include="..\Shared\MapTileLayer.cs" Link="MapTileLayer.cs" />
|
|
|
|
|
<Compile Include="..\Shared\MapTileLayerBase.cs" Link="MapTileLayerBase.cs" />
|
2024-05-19 23:23:27 +02:00
|
|
|
<Compile Include="..\Shared\Tile.cs" Link="Tile.cs" />
|
|
|
|
|
<Compile Include="..\Shared\TileCollection.cs" Link="TileCollection.cs" />
|
|
|
|
|
<Compile Include="..\Shared\TileImageLoader.cs" Link="TileImageLoader.cs" />
|
|
|
|
|
<Compile Include="..\Shared\TileMatrix.cs" Link="TileMatrix.cs" />
|
|
|
|
|
<Compile Include="..\Shared\TileSource.cs" Link="TileSource.cs" />
|
|
|
|
|
<Compile Include="..\Shared\ViewportChangedEventArgs.cs" Link="ViewportChangedEventArgs.cs" />
|
|
|
|
|
<Compile Include="..\Shared\ViewRect.cs" Link="ViewRect.cs" />
|
|
|
|
|
<Compile Include="..\Shared\WebMercatorProjection.cs" Link="WebMercatorProjection.cs" />
|
2024-05-20 23:24:34 +02:00
|
|
|
<Compile Include="..\WPF\Timer.WPF.cs" Link="Timer.WPF.cs" />
|
2024-05-19 23:35:48 +02:00
|
|
|
<Compile Include="..\WPF\TypeConverters.WPF.cs" Link="TypeConverters.WPF.cs" />
|
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>
|