XAML-Map-Control/MapProjections/WinUI/MapProjections.WinUI.csproj

47 lines
1.9 KiB
XML
Raw Normal View History

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-10-17 12:46:05 +02:00
<Version>6.1.0</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>
2021-10-17 12:46:05 +02:00
2021-07-07 16:52:31 +02:00
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
2021-10-17 12:46:05 +02:00
<DefineConstants>DEBUG;WINUI</DefineConstants>
2021-07-07 16:52:31 +02:00
</PropertyGroup>
2021-10-17 12:46:05 +02:00
2021-07-07 16:52:31 +02:00
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
2021-10-17 12:46:05 +02:00
<DefineConstants>WINUI</DefineConstants>
2021-07-07 16:52:31 +02:00
</PropertyGroup>
<ItemGroup>
<None Include="..\..\MapControl.snk" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\Shared\*" />
</ItemGroup>
<ItemGroup>
2021-10-17 12:46:05 +02:00
<PackageReference Include="Microsoft.ProjectReunion" Version="0.8.5" />
<PackageReference Include="Microsoft.ProjectReunion.Foundation" Version="0.8.5" />
<PackageReference Include="Microsoft.ProjectReunion.WinUI" Version="0.8.5" />
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>