mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2025-12-06 07:12:04 +01:00
39 lines
1.3 KiB
XML
39 lines
1.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFrameworks>net6.0-windows;net48</TargetFrameworks>
|
|
<UseWPF>true</UseWPF>
|
|
<RootNamespace>SampleApplication</RootNamespace>
|
|
<Product>XAML Map Control</Product>
|
|
<Version>6.1.0</Version>
|
|
<Description>XAML Map Control WPF Sample Application</Description>
|
|
<Authors>Clemens Fischer</Authors>
|
|
<Copyright>Copyright © 2021 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\*.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> |