2021-07-02 18:59:04 +02:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<TargetFramework>net5.0-windows10.0.19041</TargetFramework>
|
|
|
|
|
|
<TargetPlatformMinVersion>10.0.17763.0</TargetPlatformMinVersion>
|
|
|
|
|
|
<RootNamespace>MapControl.Caching</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-02 18:59:04 +02:00
|
|
|
|
<Description>IImageCache implementation based on EzTools FileDb</Description>
|
|
|
|
|
|
<Authors>Clemens Fischer</Authors>
|
|
|
|
|
|
<Copyright>Copyright © 2021 Clemens Fischer</Copyright>
|
|
|
|
|
|
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
|
2021-07-08 00:37:45 +02:00
|
|
|
|
<PackageId>XAML.MapControl.FileDbCache</PackageId>
|
2021-07-02 18:59:04 +02:00
|
|
|
|
<UseWinUI>true</UseWinUI>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
2021-10-17 12:46:05 +02:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
|
|
<DefineConstants>DEBUG;WINUI</DefineConstants>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
|
|
|
|
<DefineConstants>WINUI</DefineConstants>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
2021-07-02 18:59:04 +02:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<None Include="..\..\MapControl.snk" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Compile Include="..\Shared\*.cs" />
|
|
|
|
|
|
<Compile Include="..\UWP\*.cs" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<PackageReference Include="FileDb.Standard" Version="7.4.4" />
|
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-02 18:59:04 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\..\MapControl\WinUI\MapControl.WinUI.csproj" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
</Project>
|