2021-07-07 16:52:31 +02:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
<PropertyGroup>
|
2024-02-03 20:53:32 +01:00
|
|
|
|
<TargetFramework>net6.0-windows10.0.17763.0</TargetFramework>
|
2021-07-07 16:52:31 +02:00
|
|
|
|
<RuntimeIdentifiers>win10-x86;win10-x64;win10-arm64</RuntimeIdentifiers>
|
2023-11-23 16:06:25 +01:00
|
|
|
|
<UseRidGraph>true</UseRidGraph>
|
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.Projections</RootNamespace>
|
2022-01-11 19:42:12 +01:00
|
|
|
|
<AssemblyTitle>XAML Map Control Projections Library for WinUI</AssemblyTitle>
|
2024-06-21 06:36:24 +02:00
|
|
|
|
<GeneratePackageOnBuild>$(GeneratePackage)</GeneratePackageOnBuild>
|
2024-09-11 17:33:54 +02:00
|
|
|
|
<PackageId>XAML.MapControl.MapProjections.WinUI</PackageId>
|
2024-06-26 11:05:00 +02:00
|
|
|
|
<Title>$(AssemblyTitle)</Title>
|
|
|
|
|
|
<Description>Map projections library for XAML Map Control, based on ProjNET4GeoAPI</Description>
|
2021-07-07 16:52:31 +02:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2021-11-17 23:46:48 +01:00
|
|
|
|
<Compile Include="..\Shared\*.cs" />
|
2021-07-07 16:52:31 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-05-24 15:15:29 +02:00
|
|
|
|
<ProjectReference Include="..\..\MapControl\WinUI\MapControl.WinUI.csproj" />
|
2021-07-07 16:52:31 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-08-14 17:27:14 +02:00
|
|
|
|
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.5.240802000" />
|
2024-05-24 15:15:29 +02:00
|
|
|
|
<PackageReference Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.26100.1" />
|
|
|
|
|
|
<PackageReference Include="ProjNET4GeoAPI" Version="1.4.1" />
|
2021-07-07 16:52:31 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
</Project>
|