mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2025-12-06 07:12:04 +01:00
Version 5.0.1: Changed all WPF projects to Sdk format
This commit is contained in:
parent
49e15ce424
commit
54f8de93fe
|
|
@ -7,8 +7,8 @@ using System.Runtime.InteropServices;
|
||||||
[assembly: AssemblyCompany("Clemens Fischer")]
|
[assembly: AssemblyCompany("Clemens Fischer")]
|
||||||
[assembly: AssemblyCopyright("Copyright © 2020 Clemens Fischer")]
|
[assembly: AssemblyCopyright("Copyright © 2020 Clemens Fischer")]
|
||||||
[assembly: AssemblyTrademark("")]
|
[assembly: AssemblyTrademark("")]
|
||||||
[assembly: AssemblyVersion("5.0.0")]
|
[assembly: AssemblyVersion("5.0.1")]
|
||||||
[assembly: AssemblyFileVersion("5.0.0")]
|
[assembly: AssemblyFileVersion("5.0.1")]
|
||||||
[assembly: AssemblyConfiguration("")]
|
[assembly: AssemblyConfiguration("")]
|
||||||
[assembly: AssemblyCulture("")]
|
[assembly: AssemblyCulture("")]
|
||||||
[assembly: ComVisible(false)]
|
[assembly: ComVisible(false)]
|
||||||
|
|
|
||||||
|
|
@ -1,68 +1,55 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
|
||||||
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
<TargetFrameworks>netcoreapp3.0;netcoreapp3.1;net462;net48</TargetFrameworks>
|
||||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
<UseWPF>true</UseWPF>
|
||||||
<ProjectGuid>{AD1CB53E-7AA4-4EC0-B901-B4E0E2665133}</ProjectGuid>
|
|
||||||
<OutputType>Library</OutputType>
|
|
||||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
||||||
<RootNamespace>MapControl.Caching</RootNamespace>
|
<RootNamespace>MapControl.Caching</RootNamespace>
|
||||||
<AssemblyName>FileDbCache.WPF</AssemblyName>
|
<AssemblyName>FileDbCache.WPF</AssemblyName>
|
||||||
<TargetFrameworkVersion>v4.6.2</TargetFrameworkVersion>
|
<SignAssembly>true</SignAssembly>
|
||||||
<FileAlignment>512</FileAlignment>
|
<AssemblyOriginatorKeyFile>..\..\MapControl.snk</AssemblyOriginatorKeyFile>
|
||||||
<TargetFrameworkProfile />
|
<DelaySign>false</DelaySign>
|
||||||
</PropertyGroup>
|
<Product>XAML Map Control</Product>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
<Version>5.0.1</Version>
|
||||||
<DebugSymbols>true</DebugSymbols>
|
<Description>ObjectCache implementation based on EzTools FileDb</Description>
|
||||||
<DebugType>full</DebugType>
|
<Authors>Clemens Fischer</Authors>
|
||||||
<Optimize>false</Optimize>
|
<Copyright>Copyright © 2020 Clemens Fischer</Copyright>
|
||||||
<OutputPath>bin\Debug\</OutputPath>
|
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
|
||||||
<DefineConstants>DEBUG</DefineConstants>
|
<PackageId>XAML.MapControl.FileDbCache</PackageId>
|
||||||
<ErrorReport>prompt</ErrorReport>
|
|
||||||
<WarningLevel>4</WarningLevel>
|
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
||||||
<DebugType>none</DebugType>
|
<DebugType>none</DebugType>
|
||||||
<Optimize>true</Optimize>
|
<DebugSymbols>false</DebugSymbols>
|
||||||
<OutputPath>bin\Release\</OutputPath>
|
<DefineConstants></DefineConstants>
|
||||||
<DefineConstants>
|
|
||||||
</DefineConstants>
|
|
||||||
<ErrorReport>prompt</ErrorReport>
|
|
||||||
<WarningLevel>4</WarningLevel>
|
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup>
|
|
||||||
<SignAssembly>true</SignAssembly>
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
||||||
</PropertyGroup>
|
<DebugType>full</DebugType>
|
||||||
<PropertyGroup>
|
<DebugSymbols>true</DebugSymbols>
|
||||||
<AssemblyOriginatorKeyFile>..\..\MapControl.snk</AssemblyOriginatorKeyFile>
|
<DefineConstants>DEBUG</DefineConstants>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Reference Include="System" />
|
<None Include="..\..\MapControl.snk" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<Compile Include="..\Shared\*" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.0' or '$(TargetFramework)' == 'netcoreapp3.1'">
|
||||||
|
<PackageReference Include="System.Runtime.Caching" Version="4.7.0" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup Condition="'$(TargetFramework)' == 'net462' or '$(TargetFramework)' == 'net48'">
|
||||||
<Reference Include="System.Runtime.Caching" />
|
<Reference Include="System.Runtime.Caching" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Compile Include="..\Shared\FileDbCache.cs">
|
<PackageReference Include="FileDb.NET" Version="7.4.3" />
|
||||||
<Link>FileDbCache.cs</Link>
|
|
||||||
</Compile>
|
|
||||||
<Compile Include="FileDbCache.WPF.cs" />
|
|
||||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<None Include="..\..\MapControl.snk">
|
<ProjectReference Include="..\..\MapControl\WPF\MapControl.WPF.csproj" />
|
||||||
<Link>MapControl.snk</Link>
|
|
||||||
</None>
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
|
||||||
<PackageReference Include="FileDb.Net">
|
|
||||||
<Version>7.4.3</Version>
|
|
||||||
</PackageReference>
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ProjectReference Include="..\..\MapControl\WPF\MapControl.WPF.csproj">
|
|
||||||
<Project>{a204a102-c745-4d65-aec8-7b96faedef2d}</Project>
|
|
||||||
<Name>MapControl.WPF</Name>
|
|
||||||
</ProjectReference>
|
|
||||||
</ItemGroup>
|
|
||||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|
@ -1,14 +0,0 @@
|
||||||
using System.Reflection;
|
|
||||||
using System.Runtime.InteropServices;
|
|
||||||
|
|
||||||
[assembly: AssemblyTitle("XAML Map Control FileDbCache (WPF)")]
|
|
||||||
[assembly: AssemblyDescription("ObjectCache implementation based on EzTools FileDb")]
|
|
||||||
[assembly: AssemblyProduct("XAML Map Control")]
|
|
||||||
[assembly: AssemblyCompany("Clemens Fischer")]
|
|
||||||
[assembly: AssemblyCopyright("Copyright © 2020 Clemens Fischer")]
|
|
||||||
[assembly: AssemblyTrademark("")]
|
|
||||||
[assembly: AssemblyVersion("5.0.0")]
|
|
||||||
[assembly: AssemblyFileVersion("5.0.0")]
|
|
||||||
[assembly: AssemblyConfiguration("")]
|
|
||||||
[assembly: AssemblyCulture("")]
|
|
||||||
[assembly: ComVisible(false)]
|
|
||||||
|
|
@ -7,8 +7,8 @@ using System.Runtime.InteropServices;
|
||||||
[assembly: AssemblyCompany("Clemens Fischer")]
|
[assembly: AssemblyCompany("Clemens Fischer")]
|
||||||
[assembly: AssemblyCopyright("Copyright © 2020 Clemens Fischer")]
|
[assembly: AssemblyCopyright("Copyright © 2020 Clemens Fischer")]
|
||||||
[assembly: AssemblyTrademark("")]
|
[assembly: AssemblyTrademark("")]
|
||||||
[assembly: AssemblyVersion("5.0.0")]
|
[assembly: AssemblyVersion("5.0.1")]
|
||||||
[assembly: AssemblyFileVersion("5.0.0")]
|
[assembly: AssemblyFileVersion("5.0.1")]
|
||||||
[assembly: AssemblyConfiguration("")]
|
[assembly: AssemblyConfiguration("")]
|
||||||
[assembly: AssemblyCulture("")]
|
[assembly: AssemblyCulture("")]
|
||||||
[assembly: ComVisible(false)]
|
[assembly: ComVisible(false)]
|
||||||
|
|
|
||||||
|
|
@ -1,79 +1,47 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
|
||||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
<TargetFrameworks>netcoreapp3.0;netcoreapp3.1;net462;net48</TargetFrameworks>
|
||||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
<UseWPF>true</UseWPF>
|
||||||
<ProjectGuid>{38B18AB6-6E70-4696-8FB4-E8C8E12BF50C}</ProjectGuid>
|
|
||||||
<OutputType>Library</OutputType>
|
|
||||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
||||||
<RootNamespace>MapControl.MBTiles</RootNamespace>
|
<RootNamespace>MapControl.MBTiles</RootNamespace>
|
||||||
<AssemblyName>MBTiles.WPF</AssemblyName>
|
<AssemblyName>MBTiles.WPF</AssemblyName>
|
||||||
<TargetFrameworkVersion>v4.6.2</TargetFrameworkVersion>
|
<SignAssembly>true</SignAssembly>
|
||||||
<FileAlignment>512</FileAlignment>
|
<AssemblyOriginatorKeyFile>..\..\MapControl.snk</AssemblyOriginatorKeyFile>
|
||||||
<TargetFrameworkProfile />
|
<DelaySign>false</DelaySign>
|
||||||
<NuGetPackageImportStamp>
|
<Product>XAML Map Control</Product>
|
||||||
</NuGetPackageImportStamp>
|
<Version>5.0.1</Version>
|
||||||
</PropertyGroup>
|
<Description>MBTiles Support Library for XAML Map Control</Description>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
<Authors>Clemens Fischer</Authors>
|
||||||
<DebugSymbols>true</DebugSymbols>
|
<Copyright>Copyright © 2020 Clemens Fischer</Copyright>
|
||||||
<DebugType>full</DebugType>
|
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
|
||||||
<Optimize>false</Optimize>
|
<PackageId>XAML.MapControl.MBTiles</PackageId>
|
||||||
<OutputPath>bin\Debug\</OutputPath>
|
|
||||||
<DefineConstants>DEBUG</DefineConstants>
|
|
||||||
<ErrorReport>prompt</ErrorReport>
|
|
||||||
<WarningLevel>4</WarningLevel>
|
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
||||||
<DebugType>none</DebugType>
|
<DebugType>none</DebugType>
|
||||||
<Optimize>true</Optimize>
|
<DebugSymbols>false</DebugSymbols>
|
||||||
<OutputPath>bin\Release\</OutputPath>
|
<DefineConstants></DefineConstants>
|
||||||
<DefineConstants>
|
|
||||||
</DefineConstants>
|
|
||||||
<ErrorReport>prompt</ErrorReport>
|
|
||||||
<WarningLevel>4</WarningLevel>
|
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup>
|
|
||||||
<SignAssembly>true</SignAssembly>
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
||||||
</PropertyGroup>
|
<DebugType>full</DebugType>
|
||||||
<PropertyGroup>
|
<DebugSymbols>true</DebugSymbols>
|
||||||
<AssemblyOriginatorKeyFile>..\..\MapControl.snk</AssemblyOriginatorKeyFile>
|
<DefineConstants>DEBUG</DefineConstants>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Reference Include="PresentationCore" />
|
<None Include="..\..\MapControl.snk" />
|
||||||
<Reference Include="PresentationFramework" />
|
|
||||||
<Reference Include="System" />
|
|
||||||
<Reference Include="System.Core" />
|
|
||||||
<Reference Include="System.Data" />
|
|
||||||
<Reference Include="WindowsBase" />
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Compile Include="..\Shared\MBTileData.cs">
|
<Compile Include="..\Shared\*" />
|
||||||
<Link>MBTileData.cs</Link>
|
|
||||||
</Compile>
|
|
||||||
<Compile Include="..\Shared\MBTileLayer.cs">
|
|
||||||
<Link>MBTileLayer.cs</Link>
|
|
||||||
</Compile>
|
|
||||||
<Compile Include="..\Shared\MBTileSource.cs">
|
|
||||||
<Link>MBTileSource.cs</Link>
|
|
||||||
</Compile>
|
|
||||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<None Include="..\..\MapControl.snk">
|
<PackageReference Include="System.Data.SQLite.Core" Version="1.0.112" />
|
||||||
<Link>MapControl.snk</Link>
|
|
||||||
</None>
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="System.Data.SQLite.Core">
|
<ProjectReference Include="..\..\MapControl\WPF\MapControl.WPF.csproj" />
|
||||||
<Version>1.0.112</Version>
|
|
||||||
</PackageReference>
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
|
||||||
<ProjectReference Include="..\..\MapControl\WPF\MapControl.WPF.csproj">
|
|
||||||
<Project>{a204a102-c745-4d65-aec8-7b96faedef2d}</Project>
|
|
||||||
<Name>MapControl.WPF</Name>
|
|
||||||
</ProjectReference>
|
|
||||||
</ItemGroup>
|
|
||||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|
@ -1,14 +0,0 @@
|
||||||
using System.Reflection;
|
|
||||||
using System.Runtime.InteropServices;
|
|
||||||
|
|
||||||
[assembly: AssemblyTitle("XAML Map Control MBTiles Support (WPF)")]
|
|
||||||
[assembly: AssemblyDescription("MBTiles Support Library for XAML Map Control")]
|
|
||||||
[assembly: AssemblyProduct("XAML Map Control")]
|
|
||||||
[assembly: AssemblyCompany("Clemens Fischer")]
|
|
||||||
[assembly: AssemblyCopyright("Copyright © 2020 Clemens Fischer")]
|
|
||||||
[assembly: AssemblyTrademark("")]
|
|
||||||
[assembly: AssemblyVersion("5.0.0")]
|
|
||||||
[assembly: AssemblyFileVersion("5.0.0")]
|
|
||||||
[assembly: AssemblyConfiguration("")]
|
|
||||||
[assembly: AssemblyCulture("")]
|
|
||||||
[assembly: ComVisible(false)]
|
|
||||||
|
|
@ -239,12 +239,6 @@ namespace MapControl
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public ViewTransform ViewTransform { get; } = new ViewTransform();
|
public ViewTransform ViewTransform { get; } = new ViewTransform();
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Gets a MatrixTransform that can be used to transform from cartesian map coordinates
|
|
||||||
/// to view coordinates.
|
|
||||||
/// </summary>
|
|
||||||
public MatrixTransform MapToViewTransform { get; } = new MatrixTransform();
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets the horizontal and vertical scaling factors from cartesian map coordinates to view
|
/// Gets the horizontal and vertical scaling factors from cartesian map coordinates to view
|
||||||
/// coordinates at the specified location, i.e. pixels per meter.
|
/// coordinates at the specified location, i.e. pixels per meter.
|
||||||
|
|
@ -739,7 +733,6 @@ namespace MapControl
|
||||||
}
|
}
|
||||||
|
|
||||||
ViewScale = ViewTransform.Scale;
|
ViewScale = ViewTransform.Scale;
|
||||||
MapToViewTransform.Matrix = ViewTransform.MapToViewMatrix;
|
|
||||||
|
|
||||||
OnViewportChanged(new ViewportChangedEventArgs(projectionChanged, Center.Longitude - centerLongitude));
|
OnViewportChanged(new ViewportChangedEventArgs(projectionChanged, Center.Longitude - centerLongitude));
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -13,8 +13,8 @@ using System.Windows.Media;
|
||||||
namespace MapControl
|
namespace MapControl
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A path element with a Data property that holds a Geometry in cartesian map coordinates
|
/// A path element with a Data property that holds a Geometry in view coordinates or
|
||||||
/// or view coordinates. Cartesian coordinates can optionally be relative to an origin Location.
|
/// cartesian map coordinates that are relative to an origin Location.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public partial class MapPath : IMapElement
|
public partial class MapPath : IMapElement
|
||||||
{
|
{
|
||||||
|
|
@ -90,26 +90,19 @@ namespace MapControl
|
||||||
|
|
||||||
protected virtual void UpdateData()
|
protected virtual void UpdateData()
|
||||||
{
|
{
|
||||||
if (parentMap != null && Data != null)
|
if (parentMap != null && Data != null && Location != null)
|
||||||
{
|
{
|
||||||
if (dataTransform == null)
|
if (dataTransform == null)
|
||||||
{
|
{
|
||||||
Data.Transform = dataTransform = new MatrixTransform();
|
Data.Transform = dataTransform = new MatrixTransform();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Location != null)
|
|
||||||
{
|
|
||||||
var viewPos = LocationToView(Location);
|
var viewPos = LocationToView(Location);
|
||||||
var scale = parentMap.GetScale(Location);
|
var scale = parentMap.GetScale(Location);
|
||||||
var matrix = new Matrix(scale.X, 0, 0, scale.Y, 0, 0);
|
var transform = new Matrix(scale.X, 0d, 0d, scale.Y, 0d, 0d);
|
||||||
matrix.Rotate(parentMap.Heading);
|
transform.Rotate(parentMap.Heading);
|
||||||
matrix.Translate(viewPos.X, viewPos.Y);
|
transform.Translate(viewPos.X, viewPos.Y);
|
||||||
dataTransform.Matrix = matrix;
|
dataTransform.Matrix = transform;
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
dataTransform.Matrix = parentMap.ViewTransform.MapToViewMatrix;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,8 +7,8 @@ using System.Runtime.InteropServices;
|
||||||
[assembly: AssemblyCompany("Clemens Fischer")]
|
[assembly: AssemblyCompany("Clemens Fischer")]
|
||||||
[assembly: AssemblyCopyright("Copyright © 2020 Clemens Fischer")]
|
[assembly: AssemblyCopyright("Copyright © 2020 Clemens Fischer")]
|
||||||
[assembly: AssemblyTrademark("")]
|
[assembly: AssemblyTrademark("")]
|
||||||
[assembly: AssemblyVersion("5.0.0")]
|
[assembly: AssemblyVersion("5.0.1")]
|
||||||
[assembly: AssemblyFileVersion("5.0.0")]
|
[assembly: AssemblyFileVersion("5.0.1")]
|
||||||
[assembly: AssemblyConfiguration("")]
|
[assembly: AssemblyConfiguration("")]
|
||||||
[assembly: AssemblyCulture("")]
|
[assembly: AssemblyCulture("")]
|
||||||
[assembly: ComVisible(false)]
|
[assembly: ComVisible(false)]
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@
|
||||||
<AssemblyOriginatorKeyFile>..\..\MapControl.snk</AssemblyOriginatorKeyFile>
|
<AssemblyOriginatorKeyFile>..\..\MapControl.snk</AssemblyOriginatorKeyFile>
|
||||||
<DelaySign>false</DelaySign>
|
<DelaySign>false</DelaySign>
|
||||||
<Product>XAML Map Control</Product>
|
<Product>XAML Map Control</Product>
|
||||||
<Version>5.0.0</Version>
|
<Version>5.0.1</Version>
|
||||||
<Description>XAML Map Control Library</Description>
|
<Description>XAML Map Control Library</Description>
|
||||||
<Authors>Clemens Fischer</Authors>
|
<Authors>Clemens Fischer</Authors>
|
||||||
<Copyright>Copyright © 2020 Clemens Fischer</Copyright>
|
<Copyright>Copyright © 2020 Clemens Fischer</Copyright>
|
||||||
|
|
|
||||||
|
|
@ -7,8 +7,8 @@ using System.Runtime.InteropServices;
|
||||||
[assembly: AssemblyCompany("Clemens Fischer")]
|
[assembly: AssemblyCompany("Clemens Fischer")]
|
||||||
[assembly: AssemblyCopyright("Copyright © 2020 Clemens Fischer")]
|
[assembly: AssemblyCopyright("Copyright © 2020 Clemens Fischer")]
|
||||||
[assembly: AssemblyTrademark("")]
|
[assembly: AssemblyTrademark("")]
|
||||||
[assembly: AssemblyVersion("5.0.0")]
|
[assembly: AssemblyVersion("5.0.1")]
|
||||||
[assembly: AssemblyFileVersion("5.0.0")]
|
[assembly: AssemblyFileVersion("5.0.1")]
|
||||||
[assembly: AssemblyConfiguration("")]
|
[assembly: AssemblyConfiguration("")]
|
||||||
[assembly: AssemblyCulture("")]
|
[assembly: AssemblyCulture("")]
|
||||||
[assembly: ComVisible(false)]
|
[assembly: ComVisible(false)]
|
||||||
|
|
|
||||||
|
|
@ -1,76 +1,48 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
|
||||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
<TargetFrameworks>netcoreapp3.0;netcoreapp3.1;net462;net48</TargetFrameworks>
|
||||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
<UseWPF>true</UseWPF>
|
||||||
<ProjectGuid>{52042F63-563A-45BB-9A08-A8635AAAB84C}</ProjectGuid>
|
|
||||||
<OutputType>Library</OutputType>
|
|
||||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
||||||
<RootNamespace>MapControl.Images</RootNamespace>
|
<RootNamespace>MapControl.Images</RootNamespace>
|
||||||
<AssemblyName>MapImages.WPF</AssemblyName>
|
<AssemblyName>MapImages.WPF</AssemblyName>
|
||||||
<TargetFrameworkVersion>v4.6.2</TargetFrameworkVersion>
|
<SignAssembly>true</SignAssembly>
|
||||||
<FileAlignment>512</FileAlignment>
|
<AssemblyOriginatorKeyFile>..\..\MapControl.snk</AssemblyOriginatorKeyFile>
|
||||||
<Deterministic>true</Deterministic>
|
<DelaySign>false</DelaySign>
|
||||||
<TargetFrameworkProfile />
|
<Product>XAML Map Control</Product>
|
||||||
</PropertyGroup>
|
<Version>5.0.1</Version>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
<Description>Image Support Library for XAML Map Control</Description>
|
||||||
<DebugSymbols>true</DebugSymbols>
|
<Authors>Clemens Fischer</Authors>
|
||||||
<DebugType>full</DebugType>
|
<Copyright>Copyright © 2020 Clemens Fischer</Copyright>
|
||||||
<Optimize>false</Optimize>
|
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
|
||||||
<OutputPath>bin\Debug\</OutputPath>
|
<PackageId>XAML.MapControl.MapImages</PackageId>
|
||||||
<DefineConstants>DEBUG</DefineConstants>
|
|
||||||
<ErrorReport>prompt</ErrorReport>
|
|
||||||
<WarningLevel>4</WarningLevel>
|
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
||||||
<DebugType>none</DebugType>
|
<DebugType>none</DebugType>
|
||||||
<Optimize>true</Optimize>
|
<DebugSymbols>false</DebugSymbols>
|
||||||
<OutputPath>bin\Release\</OutputPath>
|
<DefineConstants></DefineConstants>
|
||||||
<DefineConstants>
|
|
||||||
</DefineConstants>
|
|
||||||
<ErrorReport>prompt</ErrorReport>
|
|
||||||
<WarningLevel>4</WarningLevel>
|
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup>
|
|
||||||
<SignAssembly>true</SignAssembly>
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
||||||
</PropertyGroup>
|
<DebugType>full</DebugType>
|
||||||
<PropertyGroup>
|
<DebugSymbols>true</DebugSymbols>
|
||||||
<AssemblyOriginatorKeyFile>..\..\MapControl.snk</AssemblyOriginatorKeyFile>
|
<DefineConstants>DEBUG</DefineConstants>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Reference Include="PresentationCore" />
|
<None Include="..\..\MapControl.snk" />
|
||||||
<Reference Include="PresentationFramework" />
|
</ItemGroup>
|
||||||
<Reference Include="System" />
|
|
||||||
<Reference Include="System.Core" />
|
<ItemGroup>
|
||||||
|
<Compile Include="..\Shared\*" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup Condition="'$(TargetFramework)' == 'net462' or '$(TargetFramework)' == 'net48'">
|
||||||
<Reference Include="System.IO.Compression" />
|
<Reference Include="System.IO.Compression" />
|
||||||
<Reference Include="System.IO.Compression.FileSystem" />
|
|
||||||
<Reference Include="System.Xml" />
|
|
||||||
<Reference Include="WindowsBase" />
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Compile Include="..\Shared\GroundOverlayPanel.cs">
|
<ProjectReference Include="..\..\MapControl\WPF\MapControl.WPF.csproj" />
|
||||||
<Link>GroundOverlayPanel.cs</Link>
|
<ProjectReference Include="..\..\MapProjections\WPF\MapProjections.WPF.csproj" />
|
||||||
</Compile>
|
|
||||||
<Compile Include="..\Shared\WorldFileImage.cs">
|
|
||||||
<Link>WorldFileImage.cs</Link>
|
|
||||||
</Compile>
|
|
||||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
|
||||||
<ProjectReference Include="..\..\MapControl\WPF\MapControl.WPF.csproj">
|
|
||||||
<Project>{a204a102-c745-4d65-aec8-7b96faedef2d}</Project>
|
|
||||||
<Name>MapControl.WPF</Name>
|
|
||||||
</ProjectReference>
|
|
||||||
<ProjectReference Include="..\..\MapProjections\WPF\MapProjections.WPF.csproj">
|
|
||||||
<Project>{426c21c0-5f14-491f-bcd1-6d2993510420}</Project>
|
|
||||||
<Name>MapProjections.WPF</Name>
|
|
||||||
</ProjectReference>
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<None Include="..\..\MapControl.snk">
|
|
||||||
<Link>MapControl.snk</Link>
|
|
||||||
</None>
|
|
||||||
</ItemGroup>
|
|
||||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|
@ -1,14 +0,0 @@
|
||||||
using System.Reflection;
|
|
||||||
using System.Runtime.InteropServices;
|
|
||||||
|
|
||||||
[assembly: AssemblyTitle("XAML Map Control Image Support (WPF)")]
|
|
||||||
[assembly: AssemblyDescription("Image Support Library for XAML Map Control")]
|
|
||||||
[assembly: AssemblyProduct("XAML Map Control")]
|
|
||||||
[assembly: AssemblyCompany("Clemens Fischer")]
|
|
||||||
[assembly: AssemblyCopyright("Copyright © 2020 Clemens Fischer")]
|
|
||||||
[assembly: AssemblyTrademark("")]
|
|
||||||
[assembly: AssemblyVersion("5.0.0")]
|
|
||||||
[assembly: AssemblyFileVersion("5.0.0")]
|
|
||||||
[assembly: AssemblyConfiguration("")]
|
|
||||||
[assembly: AssemblyCulture("")]
|
|
||||||
[assembly: ComVisible(false)]
|
|
||||||
|
|
@ -7,8 +7,8 @@ using System.Runtime.InteropServices;
|
||||||
[assembly: AssemblyCompany("Clemens Fischer")]
|
[assembly: AssemblyCompany("Clemens Fischer")]
|
||||||
[assembly: AssemblyCopyright("Copyright © 2020 Clemens Fischer")]
|
[assembly: AssemblyCopyright("Copyright © 2020 Clemens Fischer")]
|
||||||
[assembly: AssemblyTrademark("")]
|
[assembly: AssemblyTrademark("")]
|
||||||
[assembly: AssemblyVersion("5.0.0")]
|
[assembly: AssemblyVersion("5.0.1")]
|
||||||
[assembly: AssemblyFileVersion("5.0.0")]
|
[assembly: AssemblyFileVersion("5.0.1")]
|
||||||
[assembly: AssemblyConfiguration("")]
|
[assembly: AssemblyConfiguration("")]
|
||||||
[assembly: AssemblyCulture("")]
|
[assembly: AssemblyCulture("")]
|
||||||
[assembly: ComVisible(false)]
|
[assembly: ComVisible(false)]
|
||||||
|
|
|
||||||
|
|
@ -1,85 +1,47 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
|
||||||
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
<TargetFrameworks>netcoreapp3.0;netcoreapp3.1;net462;net48</TargetFrameworks>
|
||||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
<UseWPF>true</UseWPF>
|
||||||
<ProjectGuid>{426C21C0-5F14-491F-BCD1-6D2993510420}</ProjectGuid>
|
|
||||||
<OutputType>library</OutputType>
|
|
||||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
||||||
<RootNamespace>MapControl.Projections</RootNamespace>
|
<RootNamespace>MapControl.Projections</RootNamespace>
|
||||||
<AssemblyName>MapProjections.WPF</AssemblyName>
|
<AssemblyName>MapProjections.WPF</AssemblyName>
|
||||||
<TargetFrameworkVersion>v4.6.2</TargetFrameworkVersion>
|
|
||||||
<FileAlignment>512</FileAlignment>
|
|
||||||
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
|
||||||
<WarningLevel>4</WarningLevel>
|
|
||||||
<TargetFrameworkProfile />
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
||||||
<DebugSymbols>true</DebugSymbols>
|
|
||||||
<DebugType>full</DebugType>
|
|
||||||
<Optimize>false</Optimize>
|
|
||||||
<OutputPath>bin\Debug\</OutputPath>
|
|
||||||
<DefineConstants>DEBUG</DefineConstants>
|
|
||||||
<ErrorReport>prompt</ErrorReport>
|
|
||||||
<WarningLevel>4</WarningLevel>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
||||||
<DebugType>pdbonly</DebugType>
|
|
||||||
<Optimize>true</Optimize>
|
|
||||||
<OutputPath>bin\Release\</OutputPath>
|
|
||||||
<DefineConstants>
|
|
||||||
</DefineConstants>
|
|
||||||
<ErrorReport>prompt</ErrorReport>
|
|
||||||
<WarningLevel>4</WarningLevel>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup>
|
|
||||||
<SignAssembly>true</SignAssembly>
|
<SignAssembly>true</SignAssembly>
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup>
|
|
||||||
<AssemblyOriginatorKeyFile>..\..\MapControl.snk</AssemblyOriginatorKeyFile>
|
<AssemblyOriginatorKeyFile>..\..\MapControl.snk</AssemblyOriginatorKeyFile>
|
||||||
|
<DelaySign>false</DelaySign>
|
||||||
|
<Product>XAML Map Control</Product>
|
||||||
|
<Version>5.0.1</Version>
|
||||||
|
<Description>Map Projections Library for XAML Map Control</Description>
|
||||||
|
<Authors>Clemens Fischer</Authors>
|
||||||
|
<Copyright>Copyright © 2020 Clemens Fischer</Copyright>
|
||||||
|
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
|
||||||
|
<PackageId>XAML.MapControl.MapProjections</PackageId>
|
||||||
</PropertyGroup>
|
</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>
|
<ItemGroup>
|
||||||
<Reference Include="System" />
|
<None Include="..\..\MapControl.snk" />
|
||||||
<Reference Include="System.Core" />
|
|
||||||
<Reference Include="WindowsBase" />
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Compile Include="..\Shared\GeoApiProjection.cs">
|
<Compile Include="..\Shared\*" />
|
||||||
<Link>GeoApiProjection.cs</Link>
|
|
||||||
</Compile>
|
|
||||||
<Compile Include="..\Shared\PolarStereographicProjection.cs">
|
|
||||||
<Link>PolarStereographicProjection.cs</Link>
|
|
||||||
</Compile>
|
|
||||||
<Compile Include="..\Shared\UtmProjection.cs">
|
|
||||||
<Link>UtmProjection.cs</Link>
|
|
||||||
</Compile>
|
|
||||||
<Compile Include="..\Shared\WebMercatorProjection.cs">
|
|
||||||
<Link>WebMercatorProjection.cs</Link>
|
|
||||||
</Compile>
|
|
||||||
<Compile Include="..\Shared\WorldMercatorProjection.cs">
|
|
||||||
<Link>WorldMercatorProjection.cs</Link>
|
|
||||||
</Compile>
|
|
||||||
<Compile Include="Properties\AssemblyInfo.cs">
|
|
||||||
<SubType>Code</SubType>
|
|
||||||
</Compile>
|
|
||||||
<AppDesigner Include="Properties\" />
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<None Include="..\..\MapControl.snk">
|
<PackageReference Include="ProjNET4GeoAPI" Version="1.4.1" />
|
||||||
<Link>MapControl.snk</Link>
|
|
||||||
</None>
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="ProjNET4GeoAPI">
|
<ProjectReference Include="..\..\MapControl\WPF\MapControl.WPF.csproj" />
|
||||||
<Version>1.4.1</Version>
|
|
||||||
</PackageReference>
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
|
||||||
<ProjectReference Include="..\..\MapControl\WPF\MapControl.WPF.csproj">
|
|
||||||
<Project>{a204a102-c745-4d65-aec8-7b96faedef2d}</Project>
|
|
||||||
<Name>MapControl.WPF</Name>
|
|
||||||
</ProjectReference>
|
|
||||||
</ItemGroup>
|
|
||||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|
@ -1,14 +0,0 @@
|
||||||
using System.Reflection;
|
|
||||||
using System.Runtime.InteropServices;
|
|
||||||
|
|
||||||
[assembly: AssemblyTitle("XAML Map Control Projections (WPF)")]
|
|
||||||
[assembly: AssemblyDescription("Map Projections Library for XAML Map Control")]
|
|
||||||
[assembly: AssemblyProduct("XAML Map Control")]
|
|
||||||
[assembly: AssemblyCompany("Clemens Fischer")]
|
|
||||||
[assembly: AssemblyCopyright("Copyright © 2020 Clemens Fischer")]
|
|
||||||
[assembly: AssemblyTrademark("")]
|
|
||||||
[assembly: AssemblyVersion("5.0.0")]
|
|
||||||
[assembly: AssemblyFileVersion("5.0.0")]
|
|
||||||
[assembly: AssemblyConfiguration("")]
|
|
||||||
[assembly: AssemblyCulture("")]
|
|
||||||
[assembly: ComVisible(false)]
|
|
||||||
26
MapProjections/WPF/Properties/Settings.Designer.cs
generated
26
MapProjections/WPF/Properties/Settings.Designer.cs
generated
|
|
@ -1,26 +0,0 @@
|
||||||
//------------------------------------------------------------------------------
|
|
||||||
// <auto-generated>
|
|
||||||
// This code was generated by a tool.
|
|
||||||
// Runtime Version:4.0.30319.42000
|
|
||||||
//
|
|
||||||
// Changes to this file may cause incorrect behavior and will be lost if
|
|
||||||
// the code is regenerated.
|
|
||||||
// </auto-generated>
|
|
||||||
//------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
namespace MapProjections.WPF.Properties {
|
|
||||||
|
|
||||||
|
|
||||||
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "14.0.0.0")]
|
|
||||||
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase {
|
|
||||||
|
|
||||||
private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
|
|
||||||
|
|
||||||
public static Settings Default {
|
|
||||||
get {
|
|
||||||
return defaultInstance;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -7,8 +7,8 @@ using System.Runtime.InteropServices;
|
||||||
[assembly: AssemblyCompany("Clemens Fischer")]
|
[assembly: AssemblyCompany("Clemens Fischer")]
|
||||||
[assembly: AssemblyCopyright("Copyright © 2020 Clemens Fischer")]
|
[assembly: AssemblyCopyright("Copyright © 2020 Clemens Fischer")]
|
||||||
[assembly: AssemblyTrademark("")]
|
[assembly: AssemblyTrademark("")]
|
||||||
[assembly: AssemblyVersion("5.0.0")]
|
[assembly: AssemblyVersion("5.0.1")]
|
||||||
[assembly: AssemblyFileVersion("5.0.0")]
|
[assembly: AssemblyFileVersion("5.0.1")]
|
||||||
[assembly: AssemblyConfiguration("")]
|
[assembly: AssemblyConfiguration("")]
|
||||||
[assembly: AssemblyCulture("")]
|
[assembly: AssemblyCulture("")]
|
||||||
[assembly: ComVisible(false)]
|
[assembly: ComVisible(false)]
|
||||||
|
|
|
||||||
|
|
@ -1,14 +0,0 @@
|
||||||
using System.Reflection;
|
|
||||||
using System.Runtime.InteropServices;
|
|
||||||
|
|
||||||
[assembly: AssemblyTitle("XAML Map Control SQLiteCache (WPF)")]
|
|
||||||
[assembly: AssemblyDescription("ObjectCache implementation based on SQLite")]
|
|
||||||
[assembly: AssemblyProduct("XAML Map Control")]
|
|
||||||
[assembly: AssemblyCompany("Clemens Fischer")]
|
|
||||||
[assembly: AssemblyCopyright("Copyright © 2020 Clemens Fischer")]
|
|
||||||
[assembly: AssemblyTrademark("")]
|
|
||||||
[assembly: AssemblyVersion("5.0.0")]
|
|
||||||
[assembly: AssemblyFileVersion("5.0.0")]
|
|
||||||
[assembly: AssemblyConfiguration("")]
|
|
||||||
[assembly: AssemblyCulture("")]
|
|
||||||
[assembly: ComVisible(false)]
|
|
||||||
|
|
@ -1,76 +1,55 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
|
||||||
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
<TargetFrameworks>netcoreapp3.0;netcoreapp3.1;net462;net48</TargetFrameworks>
|
||||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
<UseWPF>true</UseWPF>
|
||||||
<ProjectGuid>{0109C2F0-BA2C-420F-B2CA-DB5B29B1A349}</ProjectGuid>
|
|
||||||
<OutputType>library</OutputType>
|
|
||||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
||||||
<RootNamespace>MapControl.Caching</RootNamespace>
|
<RootNamespace>MapControl.Caching</RootNamespace>
|
||||||
<AssemblyName>SQLiteCache.WPF</AssemblyName>
|
<AssemblyName>SQLiteCache.WPF</AssemblyName>
|
||||||
<TargetFrameworkVersion>v4.6.2</TargetFrameworkVersion>
|
<SignAssembly>true</SignAssembly>
|
||||||
<FileAlignment>512</FileAlignment>
|
<AssemblyOriginatorKeyFile>..\..\MapControl.snk</AssemblyOriginatorKeyFile>
|
||||||
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
<DelaySign>false</DelaySign>
|
||||||
<WarningLevel>4</WarningLevel>
|
<Product>XAML Map Control</Product>
|
||||||
<TargetFrameworkProfile />
|
<Version>5.0.1</Version>
|
||||||
<NuGetPackageImportStamp>
|
<Description>ObjectCache implementation based on SQLite</Description>
|
||||||
</NuGetPackageImportStamp>
|
<Authors>Clemens Fischer</Authors>
|
||||||
</PropertyGroup>
|
<Copyright>Copyright © 2020 Clemens Fischer</Copyright>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
|
||||||
<DebugSymbols>true</DebugSymbols>
|
<PackageId>XAML.MapControl.SQLiteCache</PackageId>
|
||||||
<DebugType>full</DebugType>
|
|
||||||
<Optimize>false</Optimize>
|
|
||||||
<OutputPath>bin\Debug\</OutputPath>
|
|
||||||
<DefineConstants>DEBUG</DefineConstants>
|
|
||||||
<ErrorReport>prompt</ErrorReport>
|
|
||||||
<WarningLevel>4</WarningLevel>
|
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
||||||
<DebugType>none</DebugType>
|
<DebugType>none</DebugType>
|
||||||
<Optimize>true</Optimize>
|
<DebugSymbols>false</DebugSymbols>
|
||||||
<OutputPath>bin\Release\</OutputPath>
|
<DefineConstants></DefineConstants>
|
||||||
<DefineConstants>
|
|
||||||
</DefineConstants>
|
|
||||||
<ErrorReport>prompt</ErrorReport>
|
|
||||||
<WarningLevel>4</WarningLevel>
|
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup>
|
|
||||||
<SignAssembly>true</SignAssembly>
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
||||||
</PropertyGroup>
|
<DebugType>full</DebugType>
|
||||||
<PropertyGroup>
|
<DebugSymbols>true</DebugSymbols>
|
||||||
<AssemblyOriginatorKeyFile>..\..\MapControl.snk</AssemblyOriginatorKeyFile>
|
<DefineConstants>DEBUG</DefineConstants>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Reference Include="System" />
|
<None Include="..\..\MapControl.snk" />
|
||||||
<Reference Include="System.Data" />
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<Compile Include="..\Shared\*" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.0' or '$(TargetFramework)' == 'netcoreapp3.1'">
|
||||||
|
<PackageReference Include="System.Runtime.Caching" Version="4.7.0" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup Condition="'$(TargetFramework)' == 'net462' or '$(TargetFramework)' == 'net48'">
|
||||||
<Reference Include="System.Runtime.Caching" />
|
<Reference Include="System.Runtime.Caching" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Compile Include="..\Shared\SQLiteCache.cs">
|
<PackageReference Include="System.Data.SQLite.Core" Version="1.0.112" />
|
||||||
<Link>SQLiteCache.cs</Link>
|
|
||||||
</Compile>
|
|
||||||
<Compile Include="Properties\AssemblyInfo.cs">
|
|
||||||
<SubType>Code</SubType>
|
|
||||||
</Compile>
|
|
||||||
<AppDesigner Include="Properties\" />
|
|
||||||
<Compile Include="SQLiteCache.WPF.cs" />
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<None Include="..\..\MapControl.snk">
|
<ProjectReference Include="..\..\MapControl\WPF\MapControl.WPF.csproj" />
|
||||||
<Link>MapControl.snk</Link>
|
|
||||||
</None>
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
|
||||||
<PackageReference Include="System.Data.SQLite.Core">
|
|
||||||
<Version>1.0.112</Version>
|
|
||||||
</PackageReference>
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ProjectReference Include="..\..\MapControl\WPF\MapControl.WPF.csproj">
|
|
||||||
<Project>{A204A102-C745-4D65-AEC8-7B96FAEDEF2D}</Project>
|
|
||||||
<Name>MapControl.WPF</Name>
|
|
||||||
</ProjectReference>
|
|
||||||
</ItemGroup>
|
|
||||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
<OutputType>WinExe</OutputType>
|
<OutputType>WinExe</OutputType>
|
||||||
<TargetFramework>netcoreapp3.1</TargetFramework>
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
||||||
<UseWPF>true</UseWPF>
|
<UseWPF>true</UseWPF>
|
||||||
<Version>5.0.0</Version>
|
<Version>5.0.1</Version>
|
||||||
<Authors>Clemens Fischer</Authors>
|
<Authors>Clemens Fischer</Authors>
|
||||||
<Description>XAML Map Control Map Projection Demo Application</Description>
|
<Description>XAML Map Control Map Projection Demo Application</Description>
|
||||||
<Product>XAML Map Control</Product>
|
<Product>XAML Map Control</Product>
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@ using System.Runtime.InteropServices;
|
||||||
[assembly: AssemblyCopyright("Copyright © 2020 Clemens Fischer")]
|
[assembly: AssemblyCopyright("Copyright © 2020 Clemens Fischer")]
|
||||||
[assembly: AssemblyTrademark("")]
|
[assembly: AssemblyTrademark("")]
|
||||||
[assembly: AssemblyCulture("")]
|
[assembly: AssemblyCulture("")]
|
||||||
[assembly: AssemblyVersion("5.0.0")]
|
[assembly: AssemblyVersion("5.0.1")]
|
||||||
[assembly: AssemblyFileVersion("5.0.0")]
|
[assembly: AssemblyFileVersion("5.0.1")]
|
||||||
[assembly: AssemblyConfiguration("")]
|
[assembly: AssemblyConfiguration("")]
|
||||||
[assembly: ComVisible(false)]
|
[assembly: ComVisible(false)]
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@
|
||||||
<UseWPF>true</UseWPF>
|
<UseWPF>true</UseWPF>
|
||||||
<RootNamespace>WpfApplication</RootNamespace>
|
<RootNamespace>WpfApplication</RootNamespace>
|
||||||
<Product>XAML Map Control</Product>
|
<Product>XAML Map Control</Product>
|
||||||
<Version>5.0.0</Version>
|
<Version>5.0.1</Version>
|
||||||
<Description>XAML Map Control WPF Sample Application</Description>
|
<Description>XAML Map Control WPF Sample Application</Description>
|
||||||
<Authors>Clemens Fischer</Authors>
|
<Authors>Clemens Fischer</Authors>
|
||||||
<Copyright>Copyright © 2020 Clemens Fischer</Copyright>
|
<Copyright>Copyright © 2020 Clemens Fischer</Copyright>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue