mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2025-12-06 07:12:04 +01:00
41 lines
1.4 KiB
XML
41 lines
1.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFrameworks>netcoreapp3.1;net48</TargetFrameworks>
|
|
<UseWPF>true</UseWPF>
|
|
<RootNamespace>WpfApplication</RootNamespace>
|
|
<Product>XAML Map Control</Product>
|
|
<Version>5.3.1</Version>
|
|
<Description>XAML Map Control WPF Sample Application</Description>
|
|
<Authors>Clemens Fischer</Authors>
|
|
<Copyright>Copyright © 2020 Clemens Fischer</Copyright>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<DefineConstants>DEBUG</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<DefineConstants></DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="..\Shared\MapLayers.cs" Link="MapLayers.cs" />
|
|
<Compile Include="..\Shared\MapViewModel.cs" Link="MapViewModel.cs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\MapControl\WPF\MapControl.WPF.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Resource Include="..\Shared\10_535_330.jpg" Link="10_535_330.jpg" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition="'$(TargetFramework)' == 'net48'">
|
|
<Reference Include="System.Net.Http" />
|
|
<Reference Include="System.Runtime.Caching" />
|
|
</ItemGroup>
|
|
|
|
</Project> |