2025-09-14 21:02:21 +02:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<TargetFramework>net9.0-windows10.0.26100.0</TargetFramework>
|
|
|
|
|
|
<TargetPlatformMinVersion>10.0.17763.0</TargetPlatformMinVersion>
|
|
|
|
|
|
<UseUwp>true</UseUwp>
|
|
|
|
|
|
<DisableRuntimeMarshalling>true</DisableRuntimeMarshalling>
|
|
|
|
|
|
<DefaultLanguage>en-US</DefaultLanguage>
|
|
|
|
|
|
<DefineConstants>UWP</DefineConstants>
|
|
|
|
|
|
<RootNamespace>MapControl.Projections</RootNamespace>
|
|
|
|
|
|
<AssemblyTitle>XAML Map Control Projections Library for UWP</AssemblyTitle>
|
|
|
|
|
|
<GeneratePackageOnBuild>$(GeneratePackage)</GeneratePackageOnBuild>
|
|
|
|
|
|
<PackageId>XAML.MapControl.MapProjections.UWP</PackageId>
|
|
|
|
|
|
<Title>$(AssemblyTitle)</Title>
|
|
|
|
|
|
<Description>Map projections library for XAML Map Control, based on ProjNET4GeoAPI</Description>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Compile Include="..\Shared\*.cs" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\..\MapControl\UWP\MapControl.UWP.csproj" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<PackageReference Include="ProjNET4GeoAPI" Version="1.4.1" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
</Project>
|