2020-03-29 21:43:21 +02:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2020-11-12 20:23:31 +01:00
|
|
|
|
<TargetFrameworks>net5.0-windows;netcoreapp3.1;net48;net462</TargetFrameworks>
|
2020-03-29 21:43:21 +02:00
|
|
|
|
<UseWPF>true</UseWPF>
|
|
|
|
|
|
<RootNamespace>MapControl.Caching</RootNamespace>
|
|
|
|
|
|
<AssemblyName>FileDbCache.WPF</AssemblyName>
|
|
|
|
|
|
<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>
|
2020-03-29 21:43:21 +02:00
|
|
|
|
<Description>ObjectCache implementation based on EzTools FileDb</Description>
|
|
|
|
|
|
<Authors>Clemens Fischer</Authors>
|
2021-01-13 21:19:27 +01:00
|
|
|
|
<Copyright>Copyright © 2021 Clemens Fischer</Copyright>
|
2020-03-29 21:43:21 +02:00
|
|
|
|
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
|
|
|
|
|
|
<PackageId>XAML.MapControl.FileDbCache</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>
|
|
|
|
|
|
|
2020-11-12 20:23:31 +01:00
|
|
|
|
<ItemGroup Condition="'$(TargetFramework)' == 'net5.0-windows' or '$(TargetFramework)' == 'netcoreapp3.1'">
|
|
|
|
|
|
<PackageReference Include="System.Runtime.Caching" Version="5.0.0" />
|
2020-03-29 22:06:26 +02:00
|
|
|
|
<PackageReference Include="FileDb.Standard" Version="7.4.4" />
|
2020-03-29 21:43:21 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2020-11-12 20:23:31 +01:00
|
|
|
|
<ItemGroup Condition="'$(TargetFramework)' == 'net48' or '$(TargetFramework)' == 'net462'">
|
2020-03-29 21:43:21 +02:00
|
|
|
|
<Reference Include="System.Runtime.Caching" />
|
2020-03-29 22:06:26 +02:00
|
|
|
|
<PackageReference Include="FileDb.NET" Version="7.4.3" />
|
2020-03-29 21:43:21 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
</Project>
|