2020-03-29 21:43:21 +02:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<TargetFrameworks>netcoreapp3.0;netcoreapp3.1;net462;net48</TargetFrameworks>
|
|
|
|
|
|
<UseWPF>true</UseWPF>
|
|
|
|
|
|
<RootNamespace>MapControl.Images</RootNamespace>
|
|
|
|
|
|
<AssemblyName>MapImages.WPF</AssemblyName>
|
|
|
|
|
|
<SignAssembly>true</SignAssembly>
|
|
|
|
|
|
<AssemblyOriginatorKeyFile>..\..\MapControl.snk</AssemblyOriginatorKeyFile>
|
|
|
|
|
|
<DelaySign>false</DelaySign>
|
|
|
|
|
|
<Product>XAML Map Control</Product>
|
2020-11-04 23:12:30 +01:00
|
|
|
|
<Version>5.4.1</Version>
|
2020-03-29 21:43:21 +02:00
|
|
|
|
<Description>Image Support Library for XAML Map Control</Description>
|
|
|
|
|
|
<Authors>Clemens Fischer</Authors>
|
|
|
|
|
|
<Copyright>Copyright © 2020 Clemens Fischer</Copyright>
|
|
|
|
|
|
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
|
|
|
|
|
|
<PackageId>XAML.MapControl.MapImages</PackageId>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
|
|
|
|
<DebugType>none</DebugType>
|
|
|
|
|
|
<DebugSymbols>false</DebugSymbols>
|
|
|
|
|
|
<DefineConstants></DefineConstants>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
|
|
<DebugType>full</DebugType>
|
|
|
|
|
|
<DebugSymbols>true</DebugSymbols>
|
|
|
|
|
|
<DefineConstants>DEBUG</DefineConstants>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<None Include="..\..\MapControl.snk" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Compile Include="..\Shared\*" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup Condition="'$(TargetFramework)' == 'net462' or '$(TargetFramework)' == 'net48'">
|
|
|
|
|
|
<Reference Include="System.IO.Compression" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\..\MapControl\WPF\MapControl.WPF.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\..\MapProjections\WPF\MapProjections.WPF.csproj" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
</Project>
|