2019-09-27 22:13:10 +02:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<TargetFramework>netcoreapp3.0</TargetFramework>
|
|
|
|
|
|
<UseWPF>true</UseWPF>
|
|
|
|
|
|
<RootNamespace>MapControl</RootNamespace>
|
|
|
|
|
|
<SignAssembly>true</SignAssembly>
|
|
|
|
|
|
<AssemblyOriginatorKeyFile>..\..\MapControl.snk</AssemblyOriginatorKeyFile>
|
|
|
|
|
|
<DelaySign>false</DelaySign>
|
|
|
|
|
|
<Product>XAML Map Control</Product>
|
|
|
|
|
|
<Authors>Clemens Fischer</Authors>
|
2019-11-07 22:40:46 +01:00
|
|
|
|
<Version>4.15.1</Version>
|
2019-09-27 22:13:10 +02:00
|
|
|
|
<Description>XAML Map Control Library</Description>
|
|
|
|
|
|
<Copyright>Copyright © 2019 Clemens Fischer</Copyright>
|
2019-09-28 20:50:50 +02:00
|
|
|
|
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
|
2019-09-27 22:13:10 +02:00
|
|
|
|
<PackageId>XAML.MapControl.Core</PackageId>
|
2019-11-03 16:35:40 +01:00
|
|
|
|
<AssemblyName>MapControl.WPF</AssemblyName>
|
2019-09-27 22:13:10 +02:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
|
|
|
|
<DefineConstants>TRACE;NET_CORE</DefineConstants>
|
2019-09-27 23:20:13 +02:00
|
|
|
|
<DebugType>none</DebugType>
|
|
|
|
|
|
<DebugSymbols>false</DebugSymbols>
|
2019-09-27 22:13:10 +02:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
|
|
<DefineConstants>TRACE;NET_CORE</DefineConstants>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Compile Include="..\Shared\AutoEquirectangularProjection.cs" Link="AutoEquirectangularProjection.cs" />
|
|
|
|
|
|
<Compile Include="..\Shared\AzimuthalEquidistantProjection.cs" Link="AzimuthalEquidistantProjection.cs" />
|
|
|
|
|
|
<Compile Include="..\Shared\AzimuthalProjection.cs" Link="AzimuthalProjection.cs" />
|
|
|
|
|
|
<Compile Include="..\Shared\BingMapsTileLayer.cs" Link="BingMapsTileLayer.cs" />
|
|
|
|
|
|
<Compile Include="..\Shared\BingMapsTileSource.cs" Link="BingMapsTileSource.cs" />
|
|
|
|
|
|
<Compile Include="..\Shared\BoundingBox.cs" Link="BoundingBox.cs" />
|
|
|
|
|
|
<Compile Include="..\Shared\CenteredBoundingBox.cs" Link="CenteredBoundingBox.cs" />
|
|
|
|
|
|
<Compile Include="..\Shared\EquirectangularProjection.cs" Link="EquirectangularProjection.cs" />
|
|
|
|
|
|
<Compile Include="..\Shared\GnomonicProjection.cs" Link="GnomonicProjection.cs" />
|
|
|
|
|
|
<Compile Include="..\Shared\HyperlinkText.cs" Link="HyperlinkText.cs" />
|
|
|
|
|
|
<Compile Include="..\Shared\ImageLoader.cs" Link="ImageLoader.cs" />
|
|
|
|
|
|
<Compile Include="..\Shared\Intersections.cs" Link="Intersections.cs" />
|
|
|
|
|
|
<Compile Include="..\Shared\Location.cs" Link="Location.cs" />
|
|
|
|
|
|
<Compile Include="..\Shared\LocationCollection.cs" Link="LocationCollection.cs" />
|
|
|
|
|
|
<Compile Include="..\Shared\LocationEx.cs" Link="LocationEx.cs" />
|
|
|
|
|
|
<Compile Include="..\Shared\MapBase.cs" Link="MapBase.cs" />
|
|
|
|
|
|
<Compile Include="..\Shared\MapGraticule.cs" Link="MapGraticule.cs" />
|
|
|
|
|
|
<Compile Include="..\Shared\MapImageLayer.cs" Link="MapImageLayer.cs" />
|
|
|
|
|
|
<Compile Include="..\Shared\MapItemsControl.cs" Link="MapItemsControl.cs" />
|
|
|
|
|
|
<Compile Include="..\Shared\MapOverlay.cs" Link="MapOverlay.cs" />
|
|
|
|
|
|
<Compile Include="..\Shared\MapPanel.cs" Link="MapPanel.cs" />
|
|
|
|
|
|
<Compile Include="..\Shared\MapPolygon.cs" Link="MapPolygon.cs" />
|
|
|
|
|
|
<Compile Include="..\Shared\MapPolyline.cs" Link="MapPolyline.cs" />
|
|
|
|
|
|
<Compile Include="..\Shared\MapProjection.cs" Link="MapProjection.cs" />
|
|
|
|
|
|
<Compile Include="..\Shared\MapScale.cs" Link="MapScale.cs" />
|
|
|
|
|
|
<Compile Include="..\Shared\MapShape.cs" Link="MapShape.cs" />
|
|
|
|
|
|
<Compile Include="..\Shared\MapTileLayer.cs" Link="MapTileLayer.cs" />
|
|
|
|
|
|
<Compile Include="..\Shared\OrthographicProjection.cs" Link="OrthographicProjection.cs" />
|
|
|
|
|
|
<Compile Include="..\Shared\PolygonCollection.cs" Link="PolygonCollection.cs" />
|
|
|
|
|
|
<Compile Include="..\Shared\Pushpin.cs" Link="Pushpin.cs" />
|
|
|
|
|
|
<Compile Include="..\Shared\StereographicProjection.cs" Link="StereographicProjection.cs" />
|
|
|
|
|
|
<Compile Include="..\Shared\Tile.cs" Link="Tile.cs" />
|
|
|
|
|
|
<Compile Include="..\Shared\TileGrid.cs" Link="TileGrid.cs" />
|
|
|
|
|
|
<Compile Include="..\Shared\TileImageLoader.cs" Link="TileImageLoader.cs" />
|
|
|
|
|
|
<Compile Include="..\Shared\TileSource.cs" Link="TileSource.cs" />
|
|
|
|
|
|
<Compile Include="..\Shared\ViewportChangedEventArgs.cs" Link="ViewportChangedEventArgs.cs" />
|
|
|
|
|
|
<Compile Include="..\Shared\WebMercatorProjection.cs" Link="WebMercatorProjection.cs" />
|
|
|
|
|
|
<Compile Include="..\Shared\WmsImageLayer.cs" Link="WmsImageLayer.cs" />
|
|
|
|
|
|
<Compile Include="..\Shared\WorldMercatorProjection.cs" Link="WorldMercatorProjection.cs" />
|
|
|
|
|
|
<Compile Include="..\WPF\ImageFileCache.WPF.cs" Link="ImageFileCache.WPF.cs" />
|
|
|
|
|
|
<Compile Include="..\WPF\ImageLoader.WPF.cs" Link="ImageLoader.WPF.cs" />
|
|
|
|
|
|
<Compile Include="..\WPF\Map.WPF.cs" Link="Map.WPF.cs" />
|
|
|
|
|
|
<Compile Include="..\WPF\MapBase.WPF.cs" Link="MapBase.WPF.cs" />
|
|
|
|
|
|
<Compile Include="..\WPF\MapGraticule.WPF.cs" Link="MapGraticule.WPF.cs" />
|
|
|
|
|
|
<Compile Include="..\WPF\MapItemsControl.WPF.cs" Link="MapItemsControl.WPF.cs" />
|
|
|
|
|
|
<Compile Include="..\WPF\MapMultiPolygon.WPF.cs" Link="MapMultiPolygon.WPF.cs" />
|
|
|
|
|
|
<Compile Include="..\WPF\MapOverlay.WPF.cs" Link="MapOverlay.WPF.cs" />
|
|
|
|
|
|
<Compile Include="..\WPF\MapPanel.WPF.cs" Link="MapPanel.WPF.cs" />
|
|
|
|
|
|
<Compile Include="..\WPF\MapShape.WPF.cs" Link="MapShape.WPF.cs" />
|
|
|
|
|
|
<Compile Include="..\WPF\Tile.WPF.cs" Link="Tile.WPF.cs" />
|
|
|
|
|
|
<Compile Include="..\WPF\TileImageLoader.WPF.cs" Link="TileImageLoader.WPF.cs" />
|
|
|
|
|
|
<Compile Include="..\WPF\TypeConverters.WPF.cs" Link="TypeConverters.WPF.cs" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<None Include="..\..\MapControl.snk" Link="MapControl.snk" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<PackageReference Include="System.Runtime.Caching" Version="4.6.0" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
</Project>
|