2021-07-07 16:52:31 +02:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<TargetFramework>net5.0-windows10.0.19041.0</TargetFramework>
|
|
|
|
|
|
<TargetPlatformMinVersion>10.0.17763.0</TargetPlatformMinVersion>
|
|
|
|
|
|
<RootNamespace>MapProjections.WinUI</RootNamespace>
|
|
|
|
|
|
<RuntimeIdentifiers>win10-x86;win10-x64;win10-arm64</RuntimeIdentifiers>
|
|
|
|
|
|
<SignAssembly>true</SignAssembly>
|
|
|
|
|
|
<AssemblyOriginatorKeyFile>..\..\MapControl.snk</AssemblyOriginatorKeyFile>
|
|
|
|
|
|
<DelaySign>false</DelaySign>
|
|
|
|
|
|
<Product>XAML Map Control</Product>
|
2021-07-17 23:05:56 +02:00
|
|
|
|
<Version>6.0.1</Version>
|
2021-07-07 16:52:31 +02:00
|
|
|
|
<Description>Map Projections Library for XAML Map Control</Description>
|
|
|
|
|
|
<Authors>Clemens Fischer</Authors>
|
|
|
|
|
|
<Copyright>Copyright © 2021 Clemens Fischer</Copyright>
|
|
|
|
|
|
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
|
2021-07-07 19:39:33 +02:00
|
|
|
|
<PackageId>XAML.MapControl.MapProjections</PackageId>
|
2021-07-07 16:52:31 +02:00
|
|
|
|
<UseWinUI>true</UseWinUI>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
|
|
<DefineConstants>WINUI</DefineConstants>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
|
|
|
|
<DefineConstants>WINUI</DefineConstants>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<None Include="..\..\MapControl.snk" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Compile Include="..\Shared\*" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2021-07-17 23:05:56 +02:00
|
|
|
|
<PackageReference Include="Microsoft.ProjectReunion" Version="0.8.1" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.ProjectReunion.Foundation" Version="0.8.1" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.ProjectReunion.WinUI" Version="0.8.1" />
|
2021-07-07 16:52:31 +02:00
|
|
|
|
<PackageReference Include="ProjNET4GeoAPI" Version="1.4.1" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\..\MapControl\WinUI\MapControl.WinUI.csproj" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
</Project>
|