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>
|
2025-01-20 13:44:56 +01:00
|
|
|
|
<TargetFrameworks>net9.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>
|
2022-01-11 19:42:12 +01:00
|
|
|
|
<AssemblyTitle>XAML Map Control WPF Sample Application</AssemblyTitle>
|
2024-05-24 15:28:28 +02:00
|
|
|
|
<DefineConstants>WPF</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>
|
|
|
|
|
|
|
2022-01-19 17:38:24 +01:00
|
|
|
|
<ItemGroup>
|
2022-08-05 21:30:57 +02:00
|
|
|
|
<Compile Remove="..\Shared\ValueConverters.cs" />
|
2022-01-19 17:38:24 +01:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2020-03-28 21:53:38 +01:00
|
|
|
|
<ItemGroup>
|
2021-12-05 17:16:14 +01:00
|
|
|
|
<Content Include="..\Shared\10_535_330.jpg" Link="10_535_330.jpg">
|
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
|
</Content>
|
2022-12-05 23:34:30 +01:00
|
|
|
|
<Content Include="..\Shared\etna.kml" Link="etna.kml">
|
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
|
</Content>
|
2020-03-28 21:53:38 +01:00
|
|
|
|
</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" />
|
|
|
|
|
|
</ItemGroup>
|
2025-03-22 17:08:43 +01:00
|
|
|
|
|
2025-03-30 17:14:02 +02:00
|
|
|
|
<ItemGroup>
|
2025-07-16 08:54:44 +02:00
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="9.0.7" />
|
2025-03-30 17:14:02 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2025-03-22 17:08:43 +01:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\..\MapUiTools\WPF\MapUiTools.WPF.csproj" />
|
|
|
|
|
|
</ItemGroup>
|
2023-01-05 15:37:43 +01:00
|
|
|
|
</Project>
|