XAML-Map-Control/MapControl/Avalonia/MapControl.Avalonia.csproj

24 lines
940 B
XML
Raw Normal View History

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>
<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\ViewTransform.cs" />
2024-05-21 00:00:30 +02:00
</ItemGroup>
2024-05-19 23:23:27 +02:00
<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>