mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2025-12-06 07:12:04 +01:00
42 lines
1.4 KiB
XML
42 lines
1.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFrameworks>net6.0-windows;net48</TargetFrameworks>
|
|
<UseWPF>true</UseWPF>
|
|
<RootNamespace>SampleApplication</RootNamespace>
|
|
<AssemblyTitle>XAML Map Control WPF Sample Application</AssemblyTitle>
|
|
<Product>XAML Map Control</Product>
|
|
<Version>8.0.0</Version>
|
|
<Authors>Clemens Fischer</Authors>
|
|
<Copyright>Copyright © 2023 Clemens Fischer</Copyright>
|
|
<DefineConstants></DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="..\Shared\*.cs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Remove="..\Shared\ValueConverters.cs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\MapControl\WPF\MapControl.WPF.csproj" />
|
|
<ProjectReference Include="..\..\MapUiTools\WPF\MapUiTools.WPF.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="..\Shared\10_535_330.jpg" Link="10_535_330.jpg">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Content>
|
|
<Content Include="..\Shared\etna.kml" Link="etna.kml">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition="'$(TargetFramework)'=='net48'">
|
|
<Reference Include="System.Net.Http" />
|
|
<Reference Include="System.Runtime.Caching" />
|
|
</ItemGroup>
|
|
</Project>
|