2021-11-18 22:12:13 +01:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2020-03-28 21:53:38 +01:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<OutputType>WinExe</OutputType>
|
2021-11-09 19:43:05 +01:00
|
|
|
|
<TargetFrameworks>net6.0-windows;net48</TargetFrameworks>
|
2020-03-28 21:53:38 +01:00
|
|
|
|
<UseWPF>true</UseWPF>
|
2021-10-28 20:26:51 +02:00
|
|
|
|
<RootNamespace>SampleApplication</RootNamespace>
|
2020-03-28 21:53:38 +01:00
|
|
|
|
<Product>XAML Map Control</Product>
|
2021-11-17 23:25:10 +01:00
|
|
|
|
<Version>7.0.0</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-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>
|
|
|
|
|
|
|
2021-11-09 19:59:52 +01:00
|
|
|
|
<ItemGroup Condition="'$(TargetFramework)'=='net48'">
|
2020-03-28 21:53:38 +01:00
|
|
|
|
<Reference Include="System.Net.Http" />
|
|
|
|
|
|
<Reference Include="System.Runtime.Caching" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2012-05-04 12:52:20 +02:00
|
|
|
|
</Project>
|