2020-03-28 21:53:38 +01:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<OutputType>WinExe</OutputType>
|
2020-11-12 20:23:31 +01:00
|
|
|
|
<TargetFrameworks>net5.0-windows;net48</TargetFrameworks>
|
2020-03-28 21:53:38 +01:00
|
|
|
|
<UseWPF>true</UseWPF>
|
|
|
|
|
|
<RootNamespace>WpfApplication</RootNamespace>
|
|
|
|
|
|
<Product>XAML Map Control</Product>
|
2021-07-17 23:05:56 +02:00
|
|
|
|
<Version>6.0.1</Version>
|
2020-03-28 21:53:38 +01:00
|
|
|
|
<Description>XAML Map Control WPF Sample Application</Description>
|
|
|
|
|
|
<Authors>Clemens Fischer</Authors>
|
2021-01-13 21:19:27 +01:00
|
|
|
|
<Copyright>Copyright © 2021 Clemens Fischer</Copyright>
|
2020-03-28 21:53:38 +01:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
2020-10-25 16:09:09 +01:00
|
|
|
|
<DefineConstants>DEBUG</DefineConstants>
|
2020-03-28 21:53:38 +01:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
2020-10-25 16:09:09 +01:00
|
|
|
|
<DefineConstants></DefineConstants>
|
2020-03-28 21:53:38 +01:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2020-10-25 16:09:09 +01:00
|
|
|
|
<Compile Include="..\Shared\*.cs" />
|
2020-03-28 21:53:38 +01:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2020-10-25 16:09:09 +01:00
|
|
|
|
<ProjectReference Include="..\..\MapControl\WPF\MapControl.WPF.csproj" />
|
2020-03-28 21:53:38 +01:00
|
|
|
|
</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>
|
|
|
|
|
|
|
2012-05-04 12:52:20 +02:00
|
|
|
|
</Project>
|