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>
|
2021-11-17 21:23:29 +01:00
|
|
|
|
<TargetFramework>net6.0-windows10.0.19041.0</TargetFramework>
|
2021-07-01 22:07:46 +02:00
|
|
|
|
<TargetPlatformMinVersion>10.0.17763.0</TargetPlatformMinVersion>
|
2021-10-28 20:26:51 +02:00
|
|
|
|
<RootNamespace>SampleApplication</RootNamespace>
|
2021-07-01 22:07:46 +02:00
|
|
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
2021-11-17 21:23:29 +01:00
|
|
|
|
<Platforms>x86;x64;arm64</Platforms>
|
|
|
|
|
|
<RuntimeIdentifiers>win10-x86;win10-x64;win10-arm64</RuntimeIdentifiers>
|
|
|
|
|
|
<PublishProfile>win10-$(Platform).pubxml</PublishProfile>
|
2021-07-01 22:07:46 +02:00
|
|
|
|
<UseWinUI>true</UseWinUI>
|
|
|
|
|
|
<Product>XAML Map Control</Product>
|
2021-10-17 12:46:05 +02:00
|
|
|
|
<Version>6.1.0</Version>
|
2021-07-01 22:07:46 +02:00
|
|
|
|
<Description>XAML Map Control WinUI Sample Application</Description>
|
|
|
|
|
|
<Authors>Clemens Fischer</Authors>
|
|
|
|
|
|
<Copyright>Copyright © 2021 Clemens Fischer</Copyright>
|
|
|
|
|
|
<AnalysisLevel>none</AnalysisLevel>
|
2021-11-17 21:23:29 +01:00
|
|
|
|
<EnablePreviewMsixTooling>true</EnablePreviewMsixTooling>
|
2021-07-01 22:07:46 +02:00
|
|
|
|
</PropertyGroup>
|
2021-10-17 12:46:05 +02:00
|
|
|
|
|
2021-07-01 22:07:46 +02:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
2021-10-17 12:46:05 +02:00
|
|
|
|
<DefineConstants>DEBUG;WINUI</DefineConstants>
|
2021-07-01 22:07:46 +02:00
|
|
|
|
</PropertyGroup>
|
2021-10-17 12:46:05 +02:00
|
|
|
|
|
2021-07-01 22:07:46 +02:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
|
|
|
|
<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>
|
2021-11-17 21:23:29 +01:00
|
|
|
|
<Content Include="..\Shared\10_535_330.jpg" Link="10_535_330.jpg" />
|
|
|
|
|
|
<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>
|
2021-11-17 21:23:29 +01:00
|
|
|
|
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.0.0" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.22000.196" />
|
2021-07-01 22:07:46 +02:00
|
|
|
|
<Manifest Include="$(ApplicationManifest)" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\..\MapControl\WinUI\MapControl.WinUI.csproj" />
|
|
|
|
|
|
</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>
|