2025-09-14 21:02:21 +02:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<OutputType>WinExe</OutputType>
|
2025-11-14 16:56:11 +01:00
|
|
|
|
<TargetFramework>net10.0-windows10.0.26100.0</TargetFramework>
|
2025-09-14 21:02:21 +02:00
|
|
|
|
<TargetPlatformMinVersion>10.0.17763.0</TargetPlatformMinVersion>
|
|
|
|
|
|
<RuntimeIdentifiers>win-x86;win-x64;win-arm64</RuntimeIdentifiers>
|
2025-09-15 18:20:06 +02:00
|
|
|
|
<Platforms>x86;x64;arm64</Platforms>
|
2025-09-14 21:02:21 +02:00
|
|
|
|
<PublishProfile>win-$(Platform).pubxml</PublishProfile>
|
2025-09-15 18:20:06 +02:00
|
|
|
|
<UseUwp>true</UseUwp>
|
|
|
|
|
|
<DefineConstants>UWP</DefineConstants>
|
|
|
|
|
|
<RootNamespace>SampleApplication</RootNamespace>
|
|
|
|
|
|
<AssemblyTitle>XAML Map Control UWP Sample Application</AssemblyTitle>
|
|
|
|
|
|
<EnableMsixTooling>true</EnableMsixTooling>
|
2025-09-14 21:02:21 +02:00
|
|
|
|
<DefaultLanguage>en-US</DefaultLanguage>
|
|
|
|
|
|
<DisableRuntimeMarshalling>true</DisableRuntimeMarshalling>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Compile Include="..\Shared\*.cs" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Content Include="..\Shared\10_535_330.jpg" Link="10_535_330.jpg" />
|
|
|
|
|
|
<Content Include="..\Shared\etna.kml" Link="etna.kml" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\..\MapUiTools\UWP\MapUiTools.UWP.csproj" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2025-11-12 17:16:47 +01:00
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="10.0.0" />
|
2025-09-14 21:02:21 +02:00
|
|
|
|
</ItemGroup>
|
2015-08-09 20:04:44 +02:00
|
|
|
|
</Project>
|