2021-10-17 12:46:05 +02:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
<PropertyGroup>
|
2024-11-29 16:43:18 +01:00
|
|
|
|
<TargetFramework>net8.0-windows10.0.17763.0</TargetFramework>
|
2025-01-22 17:39:23 +01:00
|
|
|
|
<RuntimeIdentifiers>win-x86;win-x64;win-arm64</RuntimeIdentifiers>
|
2021-11-17 22:21:34 +01:00
|
|
|
|
<UseWinUI>true</UseWinUI>
|
2024-06-26 11:05:00 +02:00
|
|
|
|
<DefineConstants>WINUI</DefineConstants>
|
2021-11-18 16:30:45 +01:00
|
|
|
|
<RootNamespace>MapControl.MBTiles</RootNamespace>
|
2022-01-11 19:42:12 +01:00
|
|
|
|
<AssemblyTitle>XAML Map Control MBTiles Library for WinUI</AssemblyTitle>
|
2024-08-19 16:23:54 +02:00
|
|
|
|
<GeneratePackageOnBuild>$(GeneratePackage)</GeneratePackageOnBuild>
|
2024-09-11 17:33:54 +02:00
|
|
|
|
<PackageId>XAML.MapControl.MBTiles.WinUI</PackageId>
|
2024-08-19 16:23:54 +02:00
|
|
|
|
<Title>$(AssemblyTitle)</Title>
|
|
|
|
|
|
<Description>MBTiles library for XAML Map Control</Description>
|
2021-10-17 12:46:05 +02:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Compile Include="..\Shared\*.cs" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-05-24 15:15:29 +02:00
|
|
|
|
<ProjectReference Include="..\..\MapControl\WinUI\MapControl.WinUI.csproj" />
|
2021-10-17 12:46:05 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2025-04-21 08:56:35 +02:00
|
|
|
|
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.7.250401001" />
|
2025-05-12 19:20:37 +02:00
|
|
|
|
<PackageReference Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.26100.3916" />
|
2024-10-15 07:52:56 +02:00
|
|
|
|
<PackageReference Include="System.Data.SQLite.Core" Version="1.0.119" />
|
2021-10-17 12:46:05 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
</Project>
|