2021-11-17 21:23:29 +01:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2021-07-01 22:07:46 +02:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<OutputType>WinExe</OutputType>
|
2023-11-23 16:06:25 +01:00
|
|
|
|
<TargetFramework>net8.0-windows10.0.17763.0</TargetFramework>
|
2022-01-11 19:42:12 +01:00
|
|
|
|
<Platforms>x64</Platforms>
|
2021-11-17 21:23:29 +01:00
|
|
|
|
<PublishProfile>win10-$(Platform).pubxml</PublishProfile>
|
2023-11-23 16:06:25 +01:00
|
|
|
|
<RuntimeIdentifiers>win10-x86;win10-x64;win10-arm64</RuntimeIdentifiers>
|
|
|
|
|
|
<UseRidGraph>true</UseRidGraph>
|
2021-07-01 22:07:46 +02:00
|
|
|
|
<UseWinUI>true</UseWinUI>
|
2021-11-18 16:30:45 +01:00
|
|
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
|
|
|
|
|
<RootNamespace>SampleApplication</RootNamespace>
|
2022-01-11 19:42:12 +01:00
|
|
|
|
<AssemblyTitle>XAML Map Control WinUI Sample Application</AssemblyTitle>
|
2021-07-01 22:07:46 +02:00
|
|
|
|
<Product>XAML Map Control</Product>
|
2024-02-04 14:41:37 +01:00
|
|
|
|
<Version>9.1.0</Version>
|
2021-07-01 22:07:46 +02:00
|
|
|
|
<Authors>Clemens Fischer</Authors>
|
2024-02-03 21:04:25 +01:00
|
|
|
|
<Copyright>Copyright © 2024 Clemens Fischer</Copyright>
|
2021-07-01 22:07:46 +02:00
|
|
|
|
<AnalysisLevel>none</AnalysisLevel>
|
2021-11-17 21:23:29 +01:00
|
|
|
|
<EnablePreviewMsixTooling>true</EnablePreviewMsixTooling>
|
2021-07-01 22:07:46 +02:00
|
|
|
|
<DefineConstants>WINUI</DefineConstants>
|
|
|
|
|
|
</PropertyGroup>
|
2021-10-17 12:46:05 +02:00
|
|
|
|
|
2021-07-01 22:07:46 +02:00
|
|
|
|
<ItemGroup>
|
2021-10-28 20:26:51 +02:00
|
|
|
|
<Compile Include="..\Shared\*.cs" />
|
2021-07-01 22:07:46 +02:00
|
|
|
|
</ItemGroup>
|
2021-11-17 21:23:29 +01:00
|
|
|
|
|
2021-07-17 23:05:56 +02:00
|
|
|
|
<ItemGroup>
|
2022-01-11 19:42:12 +01:00
|
|
|
|
<Content Include="..\Shared\10_535_330.jpg" Link="10_535_330.jpg" />
|
2022-12-05 23:34:30 +01:00
|
|
|
|
<Content Include="..\Shared\etna.kml" Link="etna.kml" />
|
2021-11-17 21:23:29 +01:00
|
|
|
|
<Content Include="Assets\SplashScreen.scale-200.png" />
|
|
|
|
|
|
<Content Include="Assets\LockScreenLogo.scale-200.png" />
|
|
|
|
|
|
<Content Include="Assets\Square150x150Logo.scale-200.png" />
|
|
|
|
|
|
<Content Include="Assets\Square44x44Logo.scale-200.png" />
|
|
|
|
|
|
<Content Include="Assets\Square44x44Logo.targetsize-24_altform-unplated.png" />
|
|
|
|
|
|
<Content Include="Assets\StoreLogo.png" />
|
|
|
|
|
|
<Content Include="Assets\Wide310x150Logo.scale-200.png" />
|
2021-07-17 23:05:56 +02:00
|
|
|
|
</ItemGroup>
|
2021-07-01 22:07:46 +02:00
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-02-02 13:27:02 +01:00
|
|
|
|
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.4.231219000" />
|
2023-11-23 16:06:25 +01:00
|
|
|
|
<PackageReference Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.22621.2428" />
|
2021-07-01 22:07:46 +02:00
|
|
|
|
<Manifest Include="$(ApplicationManifest)" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\..\MapControl\WinUI\MapControl.WinUI.csproj" />
|
2022-01-11 19:42:12 +01:00
|
|
|
|
<ProjectReference Include="..\..\MapUiTools\WinUI\MapUiTools.WinUI.csproj" />
|
2021-07-01 22:07:46 +02:00
|
|
|
|
</ItemGroup>
|
2021-11-17 21:23:29 +01:00
|
|
|
|
|
|
|
|
|
|
<!-- Defining the "Msix" ProjectCapability here allows the Single-project MSIX Packaging
|
|
|
|
|
|
Tools extension to be activated for this project even if the Windows App SDK Nuget
|
|
|
|
|
|
package has not yet been restored -->
|
|
|
|
|
|
<ItemGroup Condition="'$(DisableMsixProjectCapabilityAddedByProject)'!='true' and '$(EnablePreviewMsixTooling)'=='true'">
|
|
|
|
|
|
<ProjectCapability Include="Msix" />
|
|
|
|
|
|
</ItemGroup>
|
2021-07-01 22:07:46 +02:00
|
|
|
|
</Project>
|